Package: | Global |
Defined In: | Ext.js |
Class: | String |
Extends: | Object |
Method | Defined By | |
---|---|---|
escape( String string )
:
String<static> Escapes the passed string for ' and \ <static> Escapes the passed string for ' and \ Parameters:
| 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:
Parameters:
| 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:
Parameters:
| 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
but does not change the current string.
Parameters:
| String | |
trim()
:
String Trims 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:
Parameters:
| String |