Paquete | com.adobe.fiber.runtime.lib |
Clase | public class StringFunc |
Herencia | StringFunc Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Método | Definido por | ||
---|---|---|---|
[estática]
Returns the character at the indicated position. | StringFunc | ||
[estática]
Returns the character with the provided code. | StringFunc | ||
[estática]
Compares two strings lexicographically. | StringFunc | ||
[estática]
Compare two strings lexicographically, ignoring case. | StringFunc | ||
[estática]
Tests if this string ends with the specified suffix. | StringFunc | ||
[estática]
Returns the index of the substring within the string. | StringFunc | ||
[estática]
Returns the index within this string of the rightmost occurrence of the specified substring. | StringFunc | ||
[estática]
Returns the index within this string of the rightmost occurrence of the specified substring, ignoring case. | StringFunc | ||
[estática]
Returns the index of the substring within the string, ignoring case. | StringFunc | ||
[estática]
Finds the first occurrence of any one of a set of characters in a string. | StringFunc | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
[estática]
Inserts a substring in a string after a specified character position. | StringFunc | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
[estática]
Gets the leftmost characters from a string. | StringFunc | ||
[estática]
Removes whitespace from the front of the specified string. | StringFunc | ||
[estática]
Returns the length of a string. | StringFunc | ||
[estática]
Converts a string to lowercase. | StringFunc | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
[estática]
Returns a copy of the string, with count characters removed from the specified start position. | StringFunc | ||
[estática]
Creates a string that contains a specified number of repetitions of the specified string. | StringFunc | ||
[estática]
Replaces first occurrence of search in the input string with replace. | StringFunc | ||
[estática]
Replaces all occurrences of search in the input string with replace. | StringFunc | ||
[estática]
Replaces all occurrences of search in the input string with replace. | StringFunc | ||
[estática]
Replaces first occurrence of search in the input string with replace. | StringFunc | ||
[estática]
Reverse the characters in a string. | StringFunc | ||
[estática]
Returns the specified number of characters from the end (or right side) of the specified string. | StringFunc | ||
[estática]
Removes trailing white space from a string. | StringFunc | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
[estática]
Gets characters from a string, from the beginning to a character that is in a specified set of characters. | StringFunc | ||
[estática]
Gets characters from a string, from the beginning to a character that is not in a specified set of characters. | StringFunc | ||
[estática]
Returns true if string starts with a specified prefix. | StringFunc | ||
[estática]
Extracts a substring from a string, beginning at s (start), of length c (count). | StringFunc | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
[estática]
Removes whitespace from the start and end of a string. | StringFunc | ||
[estática]
Converts a string to uppercase. | StringFunc | ||
Devuelve el valor simple del objeto especificado. | Object |
charAt | () | método |
public static function charAt(s:String, pos:int):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns the character at the indicated position.
Parámetros
s:String — String
| |
pos:int — Position - 0 is the first character in the string
|
String — Character
|
chr | () | método |
public static function chr(c:int):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns the character with the provided code.
Parámetros
c:int — Code
|
String — Character
|
compare | () | método |
public static function compare(s1:String, s2:String):int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Compares two strings lexicographically.
Parámetros
s1:String — String
| |
s2:String — String
|
int — Value 0 if the argument string is equal to this string;
-1 if this string is lexicographically less than the string argument;
+1 if this string is lexicographically greater than the string argument.
|
compareNoCase | () | método |
public static function compareNoCase(s1:String, s2:String):int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Compare two strings lexicographically, ignoring case.
Parámetros
s1:String — String
| |
s2:String — String
|
int — 0 if the argument string is equal to this string;
-1 if this string is lexicographically less than the string argument;
+1 if this string is lexicographically greater than the string argument.
|
endsWith | () | método |
public static function endsWith(sub:String, str:String):Boolean
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Tests if this string ends with the specified suffix.
Parámetros
sub:String — Suffix to test
| |
str:String — String
|
Boolean — true if the string ends with the suffix
|
find | () | método |
public static function find(sub:String, str:String):int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns the index of the substring within the string.
Parámetros
sub:String — Substring to find
| |
str:String — String
|
int — Index of the substring, or -1 if not found
|
findLast | () | método |
public static function findLast(sub:String, str:String):int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns the index within this string of the rightmost occurrence of the specified substring.
Parámetros
sub:String — Substring to look for
| |
str:String — String
|
int — Index of the first character of the last substring is returned or -1 if not found.
|
findLastNoCase | () | método |
public static function findLastNoCase(sub:String, str:String):int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns the index within this string of the rightmost occurrence of the specified substring, ignoring case.
Parámetros
sub:String — Substring to look for
| |
str:String — String
|
int — Index of the first character of the last substring is returned or -1 if not found.
|
findNoCase | () | método |
public static function findNoCase(sub:String, str:String):int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns the index of the substring within the string, ignoring case.
Parámetros
sub:String — Substring to find
| |
str:String — String
|
int — Index of the substring, or -1 if not found
|
findOneOf | () | método |
public static function findOneOf(cset:String, str:String):int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Finds the first occurrence of any one of a set of characters in a string. The search is case-sensitive.
Parámetros
cset:String — Set of characters to look for
| |
str:String — String
|
int — Position of the first member of set found in string; or -1, if no member of set is found in string.
|
insert | () | método |
public static function insert(sub:String, str:String, pos:int):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Inserts a substring in a string after a specified character position. If position = -1, prefixes the substring to the string.
Parámetros
sub:String — String to insert
| |
str:String — String
| |
pos:int — Position to insert the substring
|
String — New string
|
left | () | método |
public static function left(str:String, count:int):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Gets the leftmost characters from a string.
Parámetros
str:String — String
| |
count:int — How many characters
|
String — Leftmost count characters of the given string
|
leftTrim | () | método |
public static function leftTrim(input:String):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Removes whitespace from the front of the specified string.
Parámetros
input:String — String whose beginning whitespace will be removed.
|
String — String with whitespace removed from the begining
|
len | () | método |
public static function len(s:String):int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns the length of a string.
Parámetros
s:String — String
|
int — Length
|
lower | () | método |
public static function lower(str:String):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Converts a string to lowercase.
Parámetros
str:String — String
|
String — String, converted to lowercase.
|
removeChars | () | método |
public static function removeChars(str:String, start:int, count:int):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns a copy of the string, with count characters removed from the specified start position. If start or count is invalid, the original string is returned.
Parámetros
str:String — String
| |
start:int — Starting character to remove
| |
count:int — Number of characters to remove
|
String — New string with the characters removed
|
repeatString | () | método |
public static function repeatString(str:String, count:int):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Creates a string that contains a specified number of repetitions of the specified string.
Parámetros
str:String — String
| |
count:int — Number of times to repeat str
|
String — New string
|
replace | () | método |
public static function replace(input:String, search:String, replace:String):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Replaces first occurrence of search in the input string with replace. The search is case-sensitive.
Parámetros
input:String — String to search
| |
search:String — What to look for
| |
replace:String — What to replace it with
|
String — New string
|
replaceAll | () | método |
public static function replaceAll(input:String, search:String, replace:String):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Replaces all occurrences of search in the input string with replace. The search is case-sensitive.
Parámetros
input:String — String to search
| |
search:String — What to look for
| |
replace:String — What to replace it with
|
String — New string
|
replaceAllNoCase | () | método |
public static function replaceAllNoCase(input:String, search:String, replace:String):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Replaces all occurrences of search in the input string with replace. The search is case-insensitive.
Parámetros
input:String — String to search
| |
search:String — What to look for
| |
replace:String — What to replace it with
|
String — New string
|
replaceNoCase | () | método |
public static function replaceNoCase(input:String, search:String, replace:String):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Replaces first occurrence of search in the input string with replace. The search is case-insensitive.
Parámetros
input:String — String to search
| |
search:String — What to look for
| |
replace:String — What to replace it with
|
String — New string
|
reverse | () | método |
public static function reverse(s:String):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Reverse the characters in a string.
Parámetros
s:String — String
|
String — New string with the characters in reverse order
|
right | () | método |
public static function right(str:String, count:int):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns the specified number of characters from the end (or right side) of the specified string.
Parámetros
str:String — String
| |
count:int — Number of rightmost characters
|
String — Rightmost count characters of the given string
|
rightTrim | () | método |
public static function rightTrim(input:String):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Removes trailing white space from a string.
Parámetros
input:String — String to trim
|
String — String with trailing whitespace removed
|
spanExcluding | () | método |
public static function spanExcluding(str:String, cset:String):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Gets characters from a string, from the beginning to a character that is in a specified set of characters. The search is case-sensitive. Example SpanExcluding("MyString", "Sin") will return "My" as after that it hits 'S' which is present in 2nd string.
Parámetros
str:String — String
| |
cset:String — Set of characters to stop on
|
String — Substring of str
|
spanIncluding | () | método |
public static function spanIncluding(str:String, cset:String):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Gets characters from a string, from the beginning to a character that is not in a specified set of characters. The search is case-sensitive. example : SpanIncluding("mystring", "mystery") will return "mystr"
Parámetros
str:String — String
| |
cset:String — Set of characters to include
|
String — Substring of str
|
startsWith | () | método |
public static function startsWith(prefix:String, input:String):Boolean
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns true if string starts with a specified prefix.
Parámetros
prefix:String — Prefix string
| |
input:String — String
|
Boolean — true if the string starts with prefix
|
substring | () | método |
public static function substring(str:String, s:int, c:int):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Extracts a substring from a string, beginning at s (start), of length c (count).
Parámetros
str:String — String
| |
s:int — First character to extract (indexes start at 0)
| |
c:int — Number of characters
|
String — Substring
|
trim | () | método |
public static function trim(s:String):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Removes whitespace from the start and end of a string.
Parámetros
s:String — String
|
String — Copy of the string with no leading or trailing whitespace
|
upper | () | método |
public static function upper(s:String):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Converts a string to uppercase.
Parámetros
s:String — String
|
String — String converted to uppercase
|
Tue Jun 12 2018, 02:12 PM Z