Child pages
  • String

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

styledisplay:none

...

iddescription

...

padding0px
width80px

...

Table Row (tr)
styleheight: 30px;
Table Head (th)
colspan2
Property Summary
Table Row (tr)
Table Cell (td)
Number
Table Cell (td)
length
Gives the length of the string.

...

padding0px
width80px

...

Table Row (tr)
styleheight: 30px;
Table Head (th)
colspan2
Method Summary

...

Table Cell (td)
String

...

Cache
indextrue
refresh100d
showRefreshtrue
iddoc
titleRefresh page
showDatetrue
retryEnable

servoy sReturnTypes2100%height: 30px;2Supported ClientssWordListSmartClientsWordListWebClientsWordListNGClientsWordListMobileClient

servoy sSummary12%30%58%height: 30px;3Property SummaryGives the length of the string.

servoy sSummary12%30%58%height: 30px;3Methods Summaryreturns a copy of the string embedded within an anchor

...

Table Cell (td)
String

...

<A> tag set.

...

returns a copy of the string embedded within an

...

Table Cell (td)
String

...

<BIG> tag set.

...

returns a copy of the string embedded within an

...

Table Cell (td)
String

...

<BLINK> tag set.

...

returns a copy of the string embedded within an

...

Table Cell (td)
Number

...

<B> tag set.

...

returns a character of the string.

...

Table Cell (td)
Number

...

returns a decimal code of the char in the string.

...

Table Cell (td)
String

...

Table Cell (td)
String

...

returns a string that appends the parameter string to the string.

...

returns a string that appends the parameter string to the string.

...

Table Row (tr)
Table Cell (td)
Boolean
Table Cell (td)
equals(other)
returns a boolean that checks if the given string is equal to the string

...

Table Cell (td)
Boolean

...

Determines whether a string ends with the characters of a specified string, returning true or false as appropriate.Determines whether a string ends with the characters of a specified string, returning true or false as appropriate.returns a boolean that checks if the given string is equal to the stringreturns a boolean that checks if the given string is equal to the string ignoring case

...

Table Cell (td)
String

...

returns a copy of the string embedded within an anchor

...

Table Cell (td)
String

...

<TT> tag set.

...

returns a copy of the string embedded within an

...

<FONT> tag set, the color param is assigned the the color attribute.

...

Table Cell (td)
String

...

returns a copy of the string embedded within an

...

Table Cell (td)
String

...

<FONT> tag set, The size param is set to the SIZE attribute

...

returns a string created by using the specified sequence of Unicode values

...

Table Cell (td)
Number

...

.Determines whether one string may be found within another string.returns the found index of the given string in string.

...

Table Cell (td)
String

...

returns a copy of the string embedded within an

...

Table Cell (td)
Number

...

<I> tag setreturns the found index of the given string in string from the end.

...

Table Cell (td)
String

...

returns a copy of the string embedded within an

...

Table Row (tr)
Table Cell (td)
Number
Table Cell (td)
localeCompare(otherString)
Table Row (tr)
Table Cell (td)
Array
Table Cell (td)
match(regexp)
returns an array of strings within the current string that matches the regexp.
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
replace(regexp, function)
returns a new string where the matches of the given regexp are replaced by the return value of the function.

...

Table Cell (td)
String

...

<A> tag set.returns an array of strings within the current string that matches the regexp.Returns the Unicode Normalization Form of the string.Returns the Unicode Normalization Form of the string.Constructs and returns a new string which contains the specified number of copies of the string on which it was called, concatenated together.returns a new string where the matches of the given regexp are replaced by the return value of the function.returns a new string where the matches of the given

...

Table Cell (td)
String

...

reg exp are replaced by newSubStr.

...

returns a new string where the first match of the given substr is replaced by the return value of the function.

...

Table Cell (td)
String

...

Table Cell (td)
Number

...

returns a new string where the first match of the given substr is replaced by newSubStr.

...

...

Table Cell (td)
String

...

returns an index where the first match is found of the regexp

...

returns a substring of the string.

...

Table Cell (td)
String

...

returns a substring of the string.

...

Table Cell (td)
String

...

returns a copy of the string embedded within an

...

Table Cell (td)
String

...

<SMALL> tag set.returns an array of objects whose elements are segments of the current string.returns an array of objects whose elements are segments of the current string.Determines whether a string begins with the characters of a specified string, returning true or false as appropriate.Determines whether a string begins with the characters of a specified string

...

Table Cell (td)
String

...

, returning true or false as appropriate.returns a copy of the string embedded within an

...

<STRIKE> tag set.

...

Table Cell (td)
String

...

returns a copy of the string embedded within an

...

Table Cell (td)
String

...

<SUB> tag set.

...

Table Cell (td)
String

...

returns a substring of the string from the start with the number of chars specified.

...

...

Table Cell (td)
String

...

returns a substring of the string from the start with the number of chars specified.

...

Returns a substring of the string from the start index until the end index.

...

Table Cell (td)
String

...

Returns a substring of the string from the start index until the end index.

...

Table Cell (td)
String

...

returns a copy of the string embedded within an

...

Table Row (tr)
Table Cell (td)
String
Table Cell (td)
toLocaleLowerCase()
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
toLocaleUpperCase()

...

Table Cell (td)
String

...

<SUP> tag set.

...

Table Cell (td)
String

...

returns a string with all lowercase letters of the current string.

...

returns a string with all uppercase letters of the current string.Returns the string

...

Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
//the callback definition
function replacer(match, p1, p2, p3, offset, string){
		// match is the matched substring
		// p1 is non-digits, p2 digits, and p3 non-alphanumerics
		// offset is the offset of the matched substring within the total string being examined
		// string is the total string being examined
 	return [p1, p2, p3].join(' - ');
}
// using replace method with replacer callback
newString = "abc12345#$*%".replace(/([^\d]*)(\d*)([^\w]*)/, replacer);

...

classlastDetailRow

...

idreplace-RegExp_String
Table Row (tr)
idname
Table Cell (td)
replace
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
replace
Span
(regexp, newSubStr)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a new string where the matches of the given regexp are replaced by newSubStr.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{RegExp} regexp
{String} newSubStr
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.replace(regexp,newSubStr);
//var re = /(\w+)\s(\w+)/;
//var str = "John Smith";
//var newstr = str.replace(re, "$2, $1");
//application.output(newstr);

...

classlastDetailRow

...

idreplace-String_Function
Table Row (tr)
idname
Table Cell (td)
replace
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
replace
Span
(substr, function)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a new string where the first match of the given substr is replaced by the return value of the function.
The function parameter is the function to be invoked to create the new substring (to put in place of the substring received from parameter #1).
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} substr
{Function} function
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
// the callback definition
function replacer(match){
		return match.toUpperCase()
}
// using replace method with replacer callback
var newString = "abc".replace("a", replacer);

...

classlastDetailRow

...

idreplace-String_String
Table Row (tr)
idname
Table Cell (td)
replace
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
replace
Span
(substr, newSubStr)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a new string where the first match of the given substr is replaced by newSubStr.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} substr
{String} newSubStr
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.replace(substr,newSubStr);

...

classlastDetailRow

...

idsearch-RegExp
Table Row (tr)
idname
Table Cell (td)
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
Number
Span
stylefont-weight: bold;
search
Span
(regexp)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns an index where the first match is found of the regexp
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{RegExp} regexp
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
Number
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.search(regexpr);

...

classlastDetailRow

...

idslice-Number
Table Row (tr)
idname
Table Cell (td)
slice
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
slice
Span
(beginSlice)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a substring of the string.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{Number} beginSlice
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.slice(start,end);

...

classlastDetailRow

...

idslice-Number_Number
Table Row (tr)
idname
Table Cell (td)
slice
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
slice
Span
(beginSlice, endSlice)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a substring of the string.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{Number} beginSlice
{Number} endSlice
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.slice(start,end);

...

classlastDetailRow

...

idsmall
Table Row (tr)
idname
Table Cell (td)
small
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
small
Span
()
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a copy of the string embedded within an <SMALL> tag set.
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.small();

...

classlastDetailRow

...

idsplit-String_Number
Table Row (tr)
idname
Table Cell (td)
split
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
split
Span
(separator, limit)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns an array of objects whose elements are segments of the current string.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} separator
{Number} limit
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.split(delimiter,limitInteger);

...

classlastDetailRow

...

idstrike
Table Row (tr)
idname
Table Cell (td)
strike
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
strike
Span
()
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a copy of the string embedded within an <STRIKE> tag set.
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.strike();

...

classlastDetailRow

...

idsub
Table Row (tr)
idname
Table Cell (td)
sub
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
sub
Span
()
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a copy of the string embedded within an <SUB> tag set.
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.sub();

...

classlastDetailRow

...

idsubstr-Number
Table Row (tr)
idname
Table Cell (td)
substr
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
substr
Span
(start)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a substring of the string from the start with the number of chars specified.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{Number} start
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.substr(start, number_of_chars);

...

classlastDetailRow

...

idsubstr-Number_Number
Table Row (tr)
idname
Table Cell (td)
substr
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
substr
Span
(start, length)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a substring of the string from the start with the number of chars specified.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{Number} start
{Number} length
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.substr(start, number_of_chars);

...

classlastDetailRow

...

idsubstring-Number
Table Row (tr)
idname
Table Cell (td)
substring
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
substring
Span
(indexA)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
Returns a substring of the string from the start index until the end index.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{Number} indexA
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.substring(start, end);

...

classlastDetailRow

...

idsubstring-Number_Number
Table Row (tr)
idname
Table Cell (td)
substring
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
substring
Span
(indexA, indexB)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
Returns a substring of the string from the start index until the end index.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{Number} indexA
{Number} indexB
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.substring(start, end);

...

classlastDetailRow

...

idsup
Table Row (tr)
idname
Table Cell (td)
sup
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
sup
Span
()
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a copy of the string embedded within an <SUP> tag set.
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.sup();

...

classlastDetailRow

...

idtoLocaleLowerCase
Table Row (tr)
idname
Table Cell (td)
toLocaleLowerCase
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
toLocaleLowerCase
Span
()
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
var s = "Have a nice day!";
application.output(s.toLocaleLowerCase());

...

classlastDetailRow

...

idtoLocaleUpperCase
Table Row (tr)
idname
Table Cell (td)
toLocaleUpperCase
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
toLocaleUpperCase
Span
()
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
var s = "Have a nice day!";
application.output(s.toLocaleUpperCase());

...

classlastDetailRow

...

idtoLowerCase
Table Row (tr)
idname
Table Cell (td)
toLowerCase
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
toLowerCase
Span
()
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a string with all lowercase letters of the current string.
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.toLowerCase();

...

classlastDetailRow

...

idtoUpperCase
Table Row (tr)
idname
Table Cell (td)
toUpperCase
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
toUpperCase
Span
()
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a string with all uppercase letters of the current string.
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.toUpperCase();

...

classlastDetailRow

...

idservoy sDetail2Property Detailslengthname

length

id

des

sIndent
Gives the length of the string.
tr
tdret

Returns

divsIndentclients

HTML Table
stripped of whitespace from both ends.

property

class
Colgroup Tag
Column
padding0px
width100%
Table Row (tr)
style2100%height:30px;
Table Head (th)
colspan1
Table Body (tbody)
idid
Table Row (tr)
Table Cell (td)
Table Row (tr)
Table Cell (td)
Div
classid
classsIndent
Number
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.length;
Table Row (tr)
classlastDetailRow
Table Cell (td)

...

idfunction
classservoy sDetail

...

padding0px
width100%
Table Row (tr)
styleheight: 30px;
Table Head (th)
colspan1
Method Details

...

idanchor-String
Table Row (tr)
idname
Table Cell (td)
anchor
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
anchor
Span
(nameAttribute)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a copy of the string embedded within an anchor <A> tag set.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} nameAttribute
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.anchor();

...

classlastDetailRow

...

idbig
Table Row (tr)
idname
Table Cell (td)
big
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
big
Span
()
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a copy of the string embedded within an <BIG> tag set.
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.big();

...

classlastDetailRow

...

idblink
Table Row (tr)
idname
Table Cell (td)
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
blink
Span
()
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a copy of the string embedded within an <BLINK> tag set.
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.blink();

...

classlastDetailRow

...

idbold
Table Row (tr)
idname
Table Cell (td)
bold
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
bold
Span
()
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a copy of the string embedded within an <B> tag set.
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.bold();

...

classlastDetailRow

...

idcharAt-Number
Table Row (tr)
idname
Table Cell (td)
charAt
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
Number
Span
stylefont-weight: bold;
charAt
Span
(index)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a character of the string.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{Number} index
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
Number
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.charAt(integer_position);

...

classlastDetailRow

...

idcharCodeAt-Number
Table Row (tr)
idname
Table Cell (td)
charCodeAt
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
Number
Span
stylefont-weight: bold;
charCodeAt
Span
(index)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a decimal code of the char in the string.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{Number} index
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
Number
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.charCodeAt(integer_position);

...

classlastDetailRow

...

idconcat-String
Table Row (tr)
idname
Table Cell (td)
concat
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
concat
Span
(string2)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a string that appends the parameter string to the string.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} string2
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.concat(string);

...

classlastDetailRow

...

idconcat-String_String
Table Row (tr)
idname
Table Cell (td)
concat
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
concat
Span
(string2, stringN)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a string that appends the parameter string to the string.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} string2
{String} stringN
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.concat(string);

...

classlastDetailRow

...

idequals-String
Table Row (tr)
idname
Table Cell (td)
equals
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
Boolean
Span
stylefont-weight: bold;
equals
Span
(other)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a boolean that checks if the given string is equal to the string
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} other
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
Boolean
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.equals(string);

...

classlastDetailRow

...

idequalsIgnoreCase-String
Table Row (tr)
idname
Table Cell (td)
equalsIgnoreCase
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
Boolean
Span
stylefont-weight: bold;
equalsIgnoreCase
Span
(other)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a boolean that checks if the given string is equal to the string ignoring case
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} other
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
Boolean
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.equalsIgnoreCase(string);

...

classlastDetailRow

...

idfixed
Table Row (tr)
idname
Table Cell (td)
fixed
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
fixed
Span
()
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a copy of the string embedded within an anchor <TT> tag set.
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.fixed();

...

classlastDetailRow

...

idfontcolor-String
Table Row (tr)
idname
Table Cell (td)
fontcolor
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
fontcolor
Span
(color)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a copy of the string embedded within an <FONT> tag set, the color param is assigned the the color attribute.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} color
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.fontcolor(color);

...

classlastDetailRow

...

idfontsize-Number
Table Row (tr)
idname
Table Cell (td)
fontsize
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
fontsize
Span
(size)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a copy of the string embedded within an <FONT> tag set, The size param is set to the SIZE attribute
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{Number} size
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.fontsize(size);

...

classlastDetailRow

...

idfromCharCode-NumberArray
Table Row (tr)
idname
Table Cell (td)
fromCharCode
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
fromCharCode
Span
(num)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a string created by using the specified sequence of Unicode values.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{Number...} num
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
String.fromCharCode(num)
// String.fromCharCode(num1,num2,num3)

...

classlastDetailRow

...

idindexOf-String_Number
Table Row (tr)
idname
Table Cell (td)
indexOf
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
Number
Span
stylefont-weight: bold;
indexOf
Span
(searchValue, fromIndex)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns the found index of the given string in string.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} searchValue
{Number} fromIndex
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
Number
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.indexOf(string,startPosition);

...

classlastDetailRow

...

iditalics
Table Row (tr)
idname
Table Cell (td)
italics
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
italics
Span
()
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a copy of the string embedded within an <I> tag set
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.italics();

...

classlastDetailRow

...

idlastIndexOf-String_Number
Table Row (tr)
idname
Table Cell (td)
lastIndexOf
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
Number
Span
stylefont-weight: bold;
lastIndexOf
Span
(searchValue, fromIndex)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns the found index of the given string in string from the end.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} searchValue
{Number} fromIndex
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
Number
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.lastIndexOf(string,startPosition);

...

classlastDetailRow

...

idlink-String
Table Row (tr)
idname
Table Cell (td)
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
link
Span
(hrefAttribute)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a copy of the string embedded within an <A> tag set.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} hrefAttribute
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.link(url);

...

classlastDetailRow

...

idlocaleCompare-String
Table Row (tr)
idname
Table Cell (td)
localeCompare
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
Number
Span
stylefont-weight: bold;
localeCompare
Span
(otherString)
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{String} otherString
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
Number
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
var s = "Have a nice day!";
application.output(s.localeCompare("Hello"));

...

classlastDetailRow

...

idmatch-RegExp
Table Row (tr)
idname
Table Cell (td)
match
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
Array
Span
stylefont-weight: bold;
match
Span
(regexp)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns an array of strings within the current string that matches the regexp.
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{RegExp} regexp
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
Array
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
string.match(regexpr);

...

classlastDetailRow

...

idreplace-RegExp_Function
Table Row (tr)
idname
Table Cell (td)
replace
Table Row (tr)
idsig
Table Cell (td)
Span
stylemargin-right: 5px;
String
Span
stylefont-weight: bold;
replace
Span
(regexp, function)
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
returns a new string where the matches of the given regexp are replaced by the return value of the function.
The function parameter is the function to be invoked to create the new substring (to put in place of the substring received from parameter #1).
Table Row (tr)
idprs
Table Cell (td)
Parameters
Div
classsIndent
{RegExp} regexp
{Function} function
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
String

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow

functionservoy sDetail2100%height:30px2Methods Detailsanchorname

anchor(nameAttribute)

dessIndent
returns a copy of the string embedded within an anchor &lt;A&gt; tag set.
prs

Parameters

sIndentnameAttribute ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRowbigname

big()

dessIndent
returns a copy of the string embedded within an &lt;BIG&gt; tag set.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
blinkname

blink()

dessIndent
returns a copy of the string embedded within an &lt;BLINK&gt; tag set.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
boldname

bold()

dessIndent
returns a copy of the string embedded within an &lt;B&gt; tag set.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
charAtname

charAt(index)

dessIndent
returns a character of the string.
prs

Parameters

sIndentindex ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
charCodeAtname

charCodeAt(index)

dessIndent
returns a decimal code of the char in the string.
prs

Parameters

sIndentindex ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
concatname

concat(string2)

dessIndent
returns a string that appends the parameter string to the string.
prs

Parameters

sIndentstring2 ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
concatname

concat(string2, stringN)

dessIndent
returns a string that appends the parameter string to the string.
prs

Parameters

sIndentstring2 ;stringN ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
endsWithname

endsWith(searchString)

dessIndent
Determines whether a string ends with the characters of a specified string, returning true or false as appropriate.
prs

Parameters

sIndentsearchStringThe characters to be searched for at the end of str.
ret

Returns

sIndent true if the given characters are found at the end of the string; otherwise, false
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
endsWithname

endsWith(searchString, length)

dessIndent
Determines whether a string ends with the characters of a specified string, returning true or false as appropriate.
prs

Parameters

sIndentsearchStringThe characters to be searched for at the end of str.lengthIf provided, it is used as the length of str. Defaults to str.length.
ret

Returns

sIndent true if the given characters are found at the end of the string; otherwise, false
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
equalsname

equals(other)

dessIndent
returns a boolean that checks if the given string is equal to the string
prs

Parameters

sIndentother ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
equalsIgnoreCasename

equalsIgnoreCase(other)

dessIndent
returns a boolean that checks if the given string is equal to the string ignoring case
prs

Parameters

sIndentother ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
fixedname

fixed()

dessIndent
returns a copy of the string embedded within an anchor &lt;TT&gt; tag set.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
fontcolorname

fontcolor(color)

dessIndent
returns a copy of the string embedded within an &lt;FONT&gt; tag set, the color param is assigned the the color attribute.
prs

Parameters

sIndentcolor ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
fontsizename

fontsize(size)

dessIndent
returns a copy of the string embedded within an &lt;FONT&gt; tag set, The size param is set to the SIZE attribute
prs

Parameters

sIndentsize ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
fromCharCodename

fromCharCode(num)

dessIndent
returns a string created by using the specified sequence of Unicode values.
prs

Parameters

sIndentnum ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
includesname

includes()

dessIndent
Determines whether one string may be found within another string.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
indexOfname

indexOf(searchValue, fromIndex)

dessIndent
returns the found index of the given string in string.
prs

Parameters

sIndentsearchValue ;fromIndex ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
italicsname

italics()

dessIndent
returns a copy of the string embedded within an &lt;I&gt; tag set
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
lastIndexOfname

lastIndexOf(searchValue, fromIndex)

dessIndent
returns the found index of the given string in string from the end.
prs

Parameters

sIndentsearchValue ;fromIndex ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
linkname

link(hrefAttribute)

dessIndent
returns a copy of the string embedded within an &lt;A&gt; tag set.
prs

Parameters

sIndenthrefAttribute ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
localeComparename

localeCompare(otherString)

dessIndentprs

Parameters

sIndentotherString ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
matchname

match(regexp)

dessIndent
returns an array of strings within the current string that matches the regexp.
prs

Parameters

sIndentregexp ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
normalizename

normalize()

dessIndent
Returns the Unicode Normalization Form of the string. (defaults to "NFC" form)
ret

Returns

sIndent A string containing the Unicode Normalization Form of the given string.
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
normalizename

normalize(form)

dessIndent
Returns the Unicode Normalization Form of the string.
form param can be one of "NFC", "NFD", "NFKC", or "NFKD", specifying the Unicode Normalization Form. If omitted or undefined, "NFC" is used.

These values have the following meanings:

"NFC"
Canonical Decomposition, followed by Canonical Composition.
"NFD"
Canonical Decomposition.
"NFKC"
Compatibility Decomposition, followed by Canonical Composition.
"NFKD"
Compatibility Decomposition.
prs

Parameters

sIndentformparam can be one of "NFC", "NFD", "NFKC", or "NFKD",
ret

Returns

sIndent A string containing the Unicode Normalization Form of the given string.
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
repeatname

repeat(count)

dessIndent
Constructs and returns a new string which contains the specified number of copies of the string on which it was called, concatenated together.
prs

Parameters

sIndentcountAn integer between 0 and +Infinity, indicating the number of times to repeat the string.
ret

Returns

sIndent A new string containing the specified number of copies of the given string.
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
replacename

replace(regexp, function)

dessIndent
returns a new string where the matches of the given regexp are replaced by the return value of the function.
The function parameter is the function to be invoked to create the new substring (to put in place of the substring received from parameter #1).
prs

Parameters

sIndentregexp ;function ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
replacename

replace(regexp, newSubStr)

dessIndent
returns a new string where the matches of the given reg exp are replaced by newSubStr.
prs

Parameters

sIndentregexp ;newSubStr ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
replacename

replace(substr, function)

dessIndent
returns a new string where the first match of the given substr is replaced by the return value of the function.
The function parameter is the function to be invoked to create the new substring (to put in place of the substring received from parameter #1).
prs

Parameters

sIndentsubstr ;function ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
replacename

replace(substr, newSubStr)

dessIndent
returns a new string where the first match of the given substr is replaced by newSubStr.
prs

Parameters

sIndentsubstr ;newSubStr ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
searchname

search(regexp)

dessIndent
returns an index where the first match is found of the regexp
prs

Parameters

sIndentregexp ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
slicename

slice(beginSlice)

dessIndent
returns a substring of the string.
prs

Parameters

sIndentbeginSlice ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
slicename

slice(beginSlice, endSlice)

dessIndent
returns a substring of the string.
prs

Parameters

sIndentbeginSlice ;endSlice ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
smallname

small()

dessIndent
returns a copy of the string embedded within an &lt;SMALL&gt; tag set.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
splitname

split(separator, limit)

dessIndent
returns an array of objects whose elements are segments of the current string.
prs

Parameters

sIndentseparatorSpecifies the string which denotes the points at which each split should occur. If separator is an empty string, str is converted to an array of characters.limitOptional integer specifying a limit on the number of splits to be found.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
splitname

split(separator, limit)

dessIndent
returns an array of objects whose elements are segments of the current string.
prs

Parameters

sIndentseparatorSpecifies the string which denotes the points at which each split should occur. If separator is an empty string, str is converted to an array of characters.limitOptional integer specifying a limit on the number of splits to be found.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
startsWithname

startsWith(searchString)

dessIndent
Determines whether a string begins with the characters of a specified string, returning true or false as appropriate.
prs

Parameters

sIndentsearchStringThe characters to be searched for at the start of this string.
ret

Returns

sIndent true if the given characters are found at the beginning of the string; otherwise, false
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
startsWithname

startsWith(searchString, position)

dessIndent
Determines whether a string begins with the characters of a specified string, returning true or false as appropriate.
prs

Parameters

sIndentsearchStringThe characters to be searched for at the start of this string.positionThe position in this string at which to begin searching for searchString. Defaults to 0.
ret

Returns

sIndent true if the given characters are found at the beginning of the string; otherwise, false
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
strikename

strike()

dessIndent
returns a copy of the string embedded within an &lt;STRIKE&gt; tag set.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
subname

sub()

dessIndent
returns a copy of the string embedded within an &lt;SUB&gt; tag set.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
substrname

substr(start)

dessIndent
returns a substring of the string from the start with the number of chars specified.
prs

Parameters

sIndentstart ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
substrname

substr(start, length)

dessIndent
returns a substring of the string from the start with the number of chars specified.
prs

Parameters

sIndentstart ;length ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
substringname

substring(indexA)

dessIndent
Returns a substring of the string from the start index until the end index.
prs

Parameters

sIndentindexA ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
substringname

substring(indexA, indexB)

dessIndent
Returns a substring of the string from the start index until the end index.
prs

Parameters

sIndentindexA ;indexB ;
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
supname

sup()

dessIndent
returns a copy of the string embedded within an &lt;SUP&gt; tag set.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
toLocaleLowerCasename

toLocaleLowerCase()

dessIndentret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
toLocaleUpperCasename

toLocaleUpperCase()

dessIndentret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
toLowerCasename

toLowerCase()

dessIndent
returns a string with all lowercase letters of the current string.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
toUpperCasename

toUpperCase()

dessIndent
returns a string with all uppercase letters of the current string.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow
trimname

trim()

dessIndent
Returns the string stripped of whitespace from both ends.
ret

Returns

sIndent
clients

Supported Clients

sIndentSmartClient,WebClient,NGClient,MobileClient
sam

Sample

sIdentjavascript
lastDetailRow