<static> Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens. Each
+
These functions are available on every String object.
Public Properties
This class has no public properties.
Public Methods
|
| escape( String string )
+ :
+ String<static> Escapes the passed string for ' and \ <static> Escapes the passed string for ' and \ Parameters:string : StringThe string to escape Returns: | String |
| format( String string , String value1 , String value2 )
+ :
+ String<static> Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens. Each
token ... <static> Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens. Each
token must be unique, and must increment in the format {0}, {1}, etc. Example usage:
var cls = 'my-class', text = 'Some text';
var s = String.format('<div class="{0}">{1}</div>', cls, text);
-// s now contains the string: '<div class="my-class">Some text</div>'
Parameters:Returns:String The formatted string
| String |
| leftPad( String string , Number size , [String char ] )
- :
- String<static> Pads the left side of a string with a specified character. This is especially useful
+ // s now contains the string: '<div class="my-class">Some text</div>'Parameters:Returns:String The formatted string
| String |
| leftPad( String string , Number size , [String char ] )
+ :
+ String<static> Pads the left side of a string with a specified character. This is especially useful
for normalizing number and date... <static> Pads the left side of a string with a specified character. This is especially useful
for normalizing number and date strings. Example usage:
var s = String.leftPad('123', 5, '0');
-// s now contains the string: '00123'
| String |
| toggle( String value , String other )
- :
- StringUtility function that allows you to easily switch a string between two alternating values. The passed value
+ // s now contains the string: '00123' | String |
| toggle( String value , String other )
+ :
+ StringUtility function that allows you to easily switch a string between two alternating values. The passed value
is compa... Utility function that allows you to easily switch a string between two alternating values. The passed value
is compared to the current string, and if they are equal, the other value that was passed in is returned. If
they are already different, the first value passed in is returned. Note that this method returns the new value
@@ -24,9 +24,9 @@ but does not change the current string.
sort = sort.toggle( 'ASC', 'DESC');
// instead of conditional logic:
-sort = (sort == 'ASC' ? 'DESC' : 'ASC'); | String |
| trim()
- :
- StringTrims whitespace from either end of a string, leaving spaces within the string intact. Example:
+sort = (sort == 'ASC' ? 'DESC' : 'ASC'); | String |
| trim()
+ :
+ StringTrims whitespace from either end of a string, leaving spaces within the string intact. Example:
var s = ' foo bar ... Trims whitespace from either end of a string, leaving spaces within the string intact. Example:
var s = ' foo bar ';
alert('-' + s + '-'); //alerts "- foo bar -"
|