diff --git a/docs/xml/lazutils/lazstringutils.xml b/docs/xml/lazutils/lazstringutils.xml index 30f1d22d83..c94edd035f 100644 --- a/docs/xml/lazutils/lazstringutils.xml +++ b/docs/xml/lazutils/lazstringutils.xml @@ -285,15 +285,61 @@ Position of the sub-string within the searched value, or 0 when not found. Value searched for the specified sub-string. - + -True when characters in S are in the range '0'..'9' +Indicates whether the characters in the specified value are numeric digits in +the range '0'..'9'. - + +

+Examines each character in s (in reverse order). +

+

+Returns True if all of the characters in s are in the range +'0'..'9'. Returns False if any character is not in the required range, or when s is an empty string (''). +

+
+ +Added in LazUtils version 4.0. Replaces the deprecated IsNumber() routine. +
+ + +Returns True if all of the characters in s are in the range +'0'..'9'. + + + + +String with the characters examined in the routine. + + + + + +Deprecated. Use IsNumeric instead. + + +

+Calls the IsNumeric routine to determine the return value. +

+

+Returns True if all of the characters in s are in the range +'0'..'9'. Returns False if any character is not in the required range, +or when s is an empty string (''). +

+
+ +Deprecated in LazUtils version 4.0 to avoid confusion with the RTL routine +of the same name. Use IsNumeric instead. + + + + +
-True when characters in S are in the range '0'..'9' +True when characters in s are in the range '0'..'9' String with values examined in the routine.