Search found 1318 matches: character

Return to advanced search

Re: Copy file by mask

Such a feature has emerged. Functions like filecopy() work fine if there is no '*' character in the file name.
CMD copy and xcopy allow you to copy files with the '*' symbol in the name, but only if all folder names in the path to the file are in Latin
by Natter
Thu Nov 07, 2024 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: New FWH 24.09

Please keep this conversion table for reference:

Image
See how the same character is represented by different ASC values in different codepages.
by nageswaragunupudi
Sun Oct 20, 2024 4:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 24.09
Replies: 95
Views: 2960

Re: New FWH 24.09

... sample OEM string DO NOT copy and paste here. That will automatically convert the string to UTF8. Please give here a list of ASC values of each character. Eg. If your string is "AB" You give me as 65,66 Please see my post. Please give me any one of your OEM string (not more than 10 ...
by nageswaragunupudi
Tue Oct 15, 2024 1:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 24.09
Replies: 95
Views: 2960

Re: New FWH 24.09

Give me a small sample OEM string

DO NOT copy and paste here. That will automatically convert the string to UTF8.

Please give here a list of ASC values of each character.

Eg. If your string is
"AB"
You give me as
65,66
by nageswaragunupudi
Mon Oct 14, 2024 3:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 24.09
Replies: 95
Views: 2960

Re: Searching for a string in the text

Yes, it's possible to use a regular expression to find the construction you described: SPACE + "." + any character + "." Here's a regular expression that would match this pattern: \s+\.\w\. Let me break down this regex for you: 1. `\s+`: This matches one or more ...
by Antonio Linares
Thu Sep 05, 2024 9:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Searching for a string in the text
Replies: 6
Views: 677

Searching for a string in the text

Is it possible to use a regular expression to find such a construction in the text:
SPACE+"."+any character+"."
by Natter
Thu Sep 05, 2024 9:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Searching for a string in the text
Replies: 6
Views: 677

Re: Switching from memo fields to files -

... inspection report There are also other files that are linked, ie. for emails ( and the memo holds the text ). One thing we found with the use of character fields for extended text is that records could get lost, losing data, or resulting in a description making no sense. It also requires two ...
by TimStone
Mon Jul 29, 2024 6:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Switching from memo fields to files -
Replies: 8
Views: 840

Re: Dbf/cdx to sql changing

... ) Error 2026 SSL Connection.... Compiling with VS2022 and mysqlclient.lib With oCn:= maria_Connect( aStr[ 2 ], .t. ) Error 2019 Can't initialize character.... Compiling with VS2022 and libmariadb32.lib I think this Error 2026 SSL Connection.... It's because of the new version of MariaBD greater ...
by acuellar
Wed Jul 24, 2024 3:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dbf/cdx to sql changing
Replies: 53
Views: 4057

Re: Dbf/cdx to sql changing

... search in tables on the web to achieve "XBROWSE standard"? You can't load the entire database. You have to reload with each entered character. And here it's about milliseconds. Especially in competition with competitors, the incremental search in the tables, which is extremely fast ...
by Otto
Thu Jul 18, 2024 1:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Dbf/cdx to sql changing
Replies: 53
Views: 4057

Re: Numeric Comparison

... ) ) /code] bFor becomes a code block. The field I am searching is CLSBAL The type is Numeric However uOldValue is translated to a character. Using dbEval(), will it compare a character value to a numeric field and get a match ? The code in my original entry works fine except for ...
by TimStone
Wed Jul 17, 2024 5:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Numeric Comparison
Replies: 6
Views: 699

Re: Why You Should Stick with DBF or Access Databases for Now

Phillipe Here is the code to encrypt\de-encrypt character fields .. and YES you will have to add one additional space for each character field you encrypt //------------------------Func ENCRYPT( TO_DO )LOCAL PADBACK := LEN(TO_DO), ...
by Rick Lipkin
Tue Jun 18, 2024 2:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Why You Should Stick with DBF or Access Databases for Now
Replies: 5
Views: 589

Re: At() and Rat() return the same value on a character string

Rick
Podrias hacer
Code: Select all  Expand view

nPos := Len(cName)- rAt( " ",cName)
 

De esta manera obtienes cuantos caracateres hay por detras del caracter buscado
by cmsoft
Thu May 16, 2024 2:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: At() and Rat() return the same value on a character string
Replies: 4
Views: 517

Re: At() and Rat() return the same value on a character string

... What I expect nAt := at( " ", cName ) scans forward from left to right so starting with "Amy " so space is the 4th character nRat := rat( " ", cName ) scans backwards from right to left starting with " Hadley" so the space is the 6th character ...
by Enrico Maria Giordano
Thu May 16, 2024 2:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: At() and Rat() return the same value on a character string
Replies: 4
Views: 517

Re: At() and Rat() return the same value on a character string

... What I expect nAt := at( " ", cName ) scans forward from left to right so starting with "Amy " so space is the 4th character nRat := rat( " ", cName ) scans backwards from right to left starting with " Hadley" so the space is the 6th character ...
by Rick Lipkin
Thu May 16, 2024 2:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: At() and Rat() return the same value on a character string
Replies: 4
Views: 517

Re: At() and Rat() return the same value on a character string

No, 4 is the correct result. The difference between AT() and RAT() is that RAT() search from right to left but the position is always counted from left. Anyway, Harbour shows the same result as xHarbour.
by Enrico Maria Giordano
Wed May 15, 2024 9:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: At() and Rat() return the same value on a character string
Replies: 4
Views: 517
Next

Return to advanced search

cron