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:
Viktor Szakats
2012-11-15 17:59:23 +00:00
parent 5730b9660e
commit 2c407b4160
2 changed files with 13 additions and 8 deletions

View File

@@ -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

View File

@@ -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$