updated scripts
This commit is contained in:
parent
b62cd1ca17
commit
ae57052452
@ -195,11 +195,17 @@
|
|||||||
"String.indexOf|param|start": "optional start index for the search",
|
"String.indexOf|param|start": "optional start index for the search",
|
||||||
"String.isEmpty": "Returns a value indicating if the string is empty",
|
"String.isEmpty": "Returns a value indicating if the string is empty",
|
||||||
"String.length": "Returns the length of a String object.",
|
"String.length": "Returns the length of a String object.",
|
||||||
|
"String.replace": "Return the current string with the first occurence of toReplace\nreplaced with the replacer\n\n\nor a function that accepts the substring and returns the replacement string.",
|
||||||
|
"String.replaceAll": "Return the current string with each occurence of toReplace\nreplaced with the replacer\n\n\nor a function that accepts the substring and returns the replacement string.",
|
||||||
|
"String.replaceAll|param|replacer": "either the string that replaces toReplace in the current string,",
|
||||||
|
"String.replaceAll|param|toReplace": "the substring to replace in the current string",
|
||||||
|
"String.replace|param|replacer": "either the string that replaces toReplace in the current string,",
|
||||||
|
"String.replace|param|toReplace": "the substring to replace in the current string",
|
||||||
"String.slice": "Return a substring of the current string.",
|
"String.slice": "Return a substring of the current string.",
|
||||||
"String.slice|param|end": "one-past-last character index",
|
"String.slice|param|end": "one-past-last character index",
|
||||||
"String.slice|param|start": "first character index; can be negative from counting from the end, eg:0",
|
"String.slice|param|start": "first character index; can be negative from counting from the end, eg:0",
|
||||||
"String.split": "Splits the string according to the separators",
|
"String.split": "Splits the string according to the separators",
|
||||||
"String.split|param|separator": "@param limit ",
|
"String.split|param|separator": "@param limit",
|
||||||
"String.substr": "Return a substring of the current string.",
|
"String.substr": "Return a substring of the current string.",
|
||||||
"String.substr|param|length": "number of characters to extract",
|
"String.substr|param|length": "number of characters to extract",
|
||||||
"String.substr|param|start": "first character index; can be negative from counting from the end, eg:0",
|
"String.substr|param|start": "first character index; can be negative from counting from the end, eg:0",
|
||||||
|
Loading…
Reference in New Issue
Block a user