You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Returns the leading numbers from a string to the caller.
Syntax
STRIP_LEADING_NUMBERS(sSourceString)
 
Parameters

sSourceString 

String. Required. The string from which the numbers are to be stripped. 

 |
 
Return Value
String. The stripped numbers.
 
Example
This code causes the message "String returned was 15" to be displayed:
var strResult = STRIP_LEADING_NUMBERS("015. Office Tasks");
alert("String returned was " + strResult);
 

  • No labels