Search found 190 matches: expressions

Return to advanced search

Fulltext-Search

... "example" in a file called "myfile.txt," you would use the following command: findstr "example" myfile.txt Regular Expressions: findstr supports regular expressions, which allows for more complex search patterns. For example, to find lines containing numbers, you ...
by Otto
Fri Mar 15, 2024 9:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltext-Search
Replies: 6
Views: 1230

Re: Count xbrowse records

... and RECCOUNT() include deleted records also. ORDKEYCOUNT() also does not exclude deleted records by itself, but honors filters, scopes and index expressions. So, 1) SET FILTER TO !DELETED()? OrdKeyCount() 2) INDEX ON RECNO() TAG RECS FOR !DELETED() // keep this ...
by wartiaga
Fri Feb 23, 2024 4:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Count xbrowse records
Replies: 5
Views: 248

Re: Count xbrowse records

... and RECCOUNT() include deleted records also. ORDKEYCOUNT() also does not exclude deleted records by itself, but honors filters, scopes and index expressions. So, 1) SET FILTER TO !DELETED()? OrdKeyCount() 2) INDEX ON RECNO() TAG RECS FOR !DELETED() // keep this ...
by Silvio.Falconi
Fri Feb 23, 2024 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Count xbrowse records
Replies: 5
Views: 248

Re: Count xbrowse records

... and RECCOUNT() include deleted records also. ORDKEYCOUNT() also does not exclude deleted records by itself, but honors filters, scopes and index expressions. So, 1) SET FILTER TO !DELETED()? OrdKeyCount() 2) INDEX ON RECNO() TAG RECS FOR !DELETED() // keep this ...
by nageswaragunupudi
Fri Feb 23, 2024 4:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Count xbrowse records
Replies: 5
Views: 248

Re: Help splitting up a character address string

... adapt this logic to the specific syntax and functions of the programming language you are using. If you're using a language that supports regular expressions, that could be an even more robust solution. Let me know if you need help in a specific programming language! User I need harbour code ChatGPT ...
by Otto
Wed Nov 15, 2023 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 596

Re: Substitution characters

Sorry, Antonio! I don't really understand how substitution characters can be used in regular expressions. I need to find a phrase in the text. This phrase is in the text, but the separators between the words may be different :(
by Natter
Wed Aug 30, 2023 8:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Substitution characters
Replies: 3
Views: 214

Re: Search by format

... all characters other than accented characters are represented by a single byte (and the same byte) both in ANSI and UTF8. So, normal RegEx expressions should work with UTF8 text also, if you are not programming for Asian languages
by nageswaragunupudi
Wed Aug 02, 2023 3:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search by format
Replies: 7
Views: 435

Re: Sql Filter between two dates - ADO

... use "HDATE < (date + 1 )" than "HDATE <= (date)", because many RDBMS use datetime fields. How to easily generate these expressions? We better make it a habit to open an ADO connection using FW_OpenAdoConnection() of FWH instead of opening on our own with ADODB.Connection. ...
by nageswaragunupudi
Sun Jun 25, 2023 3:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sql Filter between two dates - ADO
Replies: 3
Views: 338

Re: INDEX on / seek in MARIA DB

... CLIENT->(dbseek(COD_CLI+str(COD_NUM,2))) with MARIA DB oRS:seek(COD_CLI, COD_NUM) correct ? tia We are thinking of sorting and seek on compound expressions. We will announce this enhancement soon
by nageswaragunupudi
Fri May 19, 2023 1:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: INDEX on / seek in MARIA DB
Replies: 5
Views: 397

Re: XBROWSE Column Question

... Mr. Venken OrdWildSeek( cSeek, ... ) is actually an (x)Harbour function in DBFNTX and DBFCDX RDDs, applicable for indexed DBFs. We can seek expressions like "*A?C" The above post refers to similar functionality we created in FWMaria library for MySql tables. In fact, there was ...
by nageswaragunupudi
Wed May 10, 2023 7:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 868

Re: FIELD Selector for FiveWin ?

Hi Jimmy. There is a FWH function: cGetExpression() It user \fwh\samples\expbuild.rc and \fwh\samples\ExpBuild.ch. The use is for expressions. I made a very simple routine (back in fw 2.0 - Just transalte it from Portugese) Function MOVFIELDS()local oDlg1, oLbx1, oLbx2, aItm2:={}, ...
by Euclides
Sat Jul 30, 2022 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FIELD Selector for FiveWin ?
Replies: 6
Views: 1122

Re: xbrowse command not working properly -- MR. RAO

... of either field number or field name. So, with these classes ? o:FieldGet( fieldname )  also works. FWH goes further. We can even use expressions: ? o:FieldGet( "QUANTITY * PRICE" )  where QUANTITY and PRICE are field names. Now, you may ask. Why did we write ...
by nageswaragunupudi
Wed Feb 23, 2022 5:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse command not working properly -- MR. RAO
Replies: 21
Views: 1384

Re: How do I know the field name in xbrowse:column

... * PRICE" ;HEADERS "Item", "Name", "Quantity", "Rate", "Amount" ;  The expressions listed in COLUMNS clause are stored in each oCol:cExpr. So, oCol:cExpr need not always contain the field name, but actually the expression ...
by dutch
Tue Feb 01, 2022 1:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I know the field name in xbrowse:column
Replies: 22
Views: 2267

Re: How do I know the field name in xbrowse:column

... * PRICE" ;HEADERS "Item", "Name", "Quantity", "Rate", "Amount" ;  The expressions listed in COLUMNS clause are stored in each oCol:cExpr. So, oCol:cExpr need not always contain the field name, but actually the expression ...
by nageswaragunupudi
Mon Jan 31, 2022 3:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I know the field name in xbrowse:column
Replies: 22
Views: 2267

Re: DBU

... (CDX), you can do almost everything you want in this part of the screen: https://i.imgur.com/iClhmZR.jpg You can also execute SQL expressions through this menu: https://i.imgur.com/NSoglEX.jpg I Used to do REPLACE using SQL expressions
by vilian
Wed Jun 16, 2021 11:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBU
Replies: 16
Views: 2316
Next

Return to advanced search