From 452fa6128d112103ef0fc1e6e35e3df13df19776 Mon Sep 17 00:00:00 2001 From: dsiders Date: Wed, 1 May 2024 14:50:06 +0100 Subject: [PATCH] Docs: LazUtils/lazstringutils. Deprecates IsNumber and adds IsNumeric topics for changes in 4186cfe0. --- docs/xml/lazutils/lazstringutils.xml | 54 +++++++++++++++++++++++++--- 1 file changed, 50 insertions(+), 4 deletions(-) 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.