Child pages
  • String

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Hidden
DO NOT EDIT THE CONTENT OF THIS PAGE DIRECTLY, UNLESS YOU KNOW WHAT YOU'RE DOING.
		THE STRUCTURE OF THE CONTENT IS VITAL IN BEING ABLE TO EXTRACT CHANGES FROM THE PAGE AND MERGE THEM BACK INTO SERVOY SOURCE


HTML Table
idclassservoy sSummary
Colgroup Tag
Column
padding0px
width80px

Column

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

id
HTML Table
classservoy sSummary
Colgroup Tag
Column
padding0px
width80px

Column

Table Row (tr)
styleheight: 30px;
Table Head (th)
colspan2
Method Summary
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#anchor(nameAttribute)
returns a copy of the string embedded within an anchor <A> tag set.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#big()
returns a copy of the string embedded within an <BIG> tag set.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#blink()
returns a copy of the string embedded within an <BLINK> tag set.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#bold()
returns a copy of the string embedded within an <B> tag set.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
Number
Table Cell (td)
#charAt(index)
returns a character of the string.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
Number
Table Cell (td)
#charCodeAt(index)
returns a decimal code of the char in the string.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#concat(string2, [stringN])
returns a string that appends the parameter string to the string.
Table Body (tbody)
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 Body (tbody)
Table Row (tr)
Table Cell (td)
Boolean
Table Cell (td)
#equalsIgnoreCase(other)
returns a boolean that checks if the given string is equal to the string ignoring case
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#fixed()
returns a copy of the string embedded within an anchor <TT> tag set.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#fontcolor(color)
returns a copy of the string embedded within an <FONT> tag set, the color param is assigned the the color attribute.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#fontsize(size)
returns a copy of the string embedded within an <FONT> tag set, The size param is set to the SIZE attribute
Table Body (tbody)
Table Row (tr)
Table Cell (td)
Number
Table Cell (td)
#indexOf(searchValue, fromIndex)
returns the found index of the given string in string.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#italics()
returns a copy of the string embedded within an <I> tag set
Table Body (tbody)
Table Row (tr)
Table Cell (td)
Number
Table Cell (td)
#lastIndexOf(searchValue, fromIndex)
returns the found index of the given string in string from the end.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#link(hrefAttribute)
returns a copy of the string embedded within an <A> tag set.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
Number
Table Cell (td)
#localeCompare()
Table Body (tbody)
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 Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#replace(regexp, newSubStr)
returns a strings where all matches of the regexp are replaced.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
Number
Table Cell (td)
#search(regexp)
returns a index where the first match is found of the regexp
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#slice(beginSlice, [endSlice])
returns a substring of the string.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#small()
returns a copy of the string embedded within an <SMALL> tag set.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#split(separator, limit)
returns an array of objects whose elements are segments of the current string.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#strike()
returns a copy of the string embedded within an <STRIKE> tag set.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#sub()
returns a copy of the string embedded within an <SUB> tag set.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#substr(start, [length])
returns a substring of the string from the start with the number of chars specified.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#substring(indexA, [indexB])
Returns a substring of the string from the start index until the end index.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#sup()
returns a copy of the string embedded within an <SUP> tag set.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#toLocaleLowerCase()
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#toLocaleUpperCase()
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#toLowerCase()
returns a string with all lowercase letters of the current string.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#toUpperCase()
returns a string with all uppercase letters of the current string.

...