2012-11-15 18:57 UTC+0100 Viktor Szakats (harbour syenar.net)
* doc/en/string.txt
! fixed casing in recent commit in $EXAMPLES$ section
! fixed casing in some strings
This commit is contained in:
@@ -16,6 +16,11 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2012-11-15 18:57 UTC+0100 Viktor Szakats (harbour syenar.net)
|
||||
* doc/en/string.txt
|
||||
! fixed function name casing in recent commit in $EXAMPLES$ section
|
||||
! fixed casing in some strings
|
||||
|
||||
2012-11-15 16:07 UTC+0200 Alexey Myronenko (m.oleksa@ukr.net)
|
||||
* doc/en/string.txt
|
||||
+ documentaion for HB_AT(), HB_RAT() added/corrected
|
||||
|
||||
@@ -42,8 +42,8 @@
|
||||
in <cString> is an alphabetic character. If not, the function will
|
||||
return a logical false (.F.).
|
||||
$EXAMPLES$
|
||||
? 'isalpha( "hello" ) = ', IsAlpha( "hello" )
|
||||
? 'isalpha( "12345" ) = ', IsAlpha( "12345" )
|
||||
? 'IsAlpha( "hello" ) = ', IsAlpha( "hello" )
|
||||
? 'IsAlpha( "12345" ) = ', IsAlpha( "12345" )
|
||||
$STATUS$
|
||||
R
|
||||
$COMPLIANCE$
|
||||
@@ -276,10 +276,10 @@
|
||||
the second expression, the function will return 0. The third and fourth
|
||||
parameters lets you indicate a starting and end offset to search in.
|
||||
$EXAMPLES$
|
||||
? 'HB_AT( "cde", "abcdefgfedcba" ) = ' + ;
|
||||
Str( HB_AT( "cde", "abcdefgfedcba" ) ) // 3
|
||||
? 'HB_AT( "cde", "abcdefgfedcba" ) = ' + ;
|
||||
Str( HB_AT( "cde", "abcdefgfedcba", 4 ) ) // 0
|
||||
? 'hb_At( "cde", "abcdefgfedcba" ) = ' + ;
|
||||
Str( hb_At( "cde", "abcdefgfedcba" ) ) // 3
|
||||
? 'hb_At( "cde", "abcdefgfedcba" ) = ' + ;
|
||||
Str( hb_At( "cde", "abcdefgfedcba", 4 ) ) // 0
|
||||
$STATUS$
|
||||
R
|
||||
$COMPLIANCE$
|
||||
@@ -367,8 +367,8 @@
|
||||
The third and fourth parameters lets you indicate a starting and
|
||||
end offset to search in.
|
||||
$EXAMPLES$
|
||||
? 'HB_RAt( "cde", "abcdefgfedcba" ) = ' + ;
|
||||
Str( HB_RAt( "cde", "abcdefgfedcba" ) ) // 3
|
||||
? 'hb_RAt( "cde", "abcdefgfedcba" ) = ' + ;
|
||||
Str( hb_RAt( "cde", "abcdefgfedcba" ) ) // 3
|
||||
$STATUS$
|
||||
R
|
||||
$COMPLIANCE$
|
||||
|
||||
Reference in New Issue
Block a user