Pakket | com.adobe.fiber.runtime.lib |
Klasse | public class StringFunc |
Overerving | StringFunc Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Methode | Gedefinieerd door | ||
---|---|---|---|
[statisch]
Returns the character at the indicated position. | StringFunc | ||
[statisch]
Returns the character with the provided code. | StringFunc | ||
[statisch]
Compares two strings lexicographically. | StringFunc | ||
[statisch]
Compare two strings lexicographically, ignoring case. | StringFunc | ||
[statisch]
Tests if this string ends with the specified suffix. | StringFunc | ||
[statisch]
Returns the index of the substring within the string. | StringFunc | ||
[statisch]
Returns the index within this string of the rightmost occurrence of the specified substring. | StringFunc | ||
[statisch]
Returns the index within this string of the rightmost occurrence of the specified substring, ignoring case. | StringFunc | ||
[statisch]
Returns the index of the substring within the string, ignoring case. | StringFunc | ||
[statisch]
Finds the first occurrence of any one of a set of characters in a string. | StringFunc | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
[statisch]
Inserts a substring in a string after a specified character position. | StringFunc | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
[statisch]
Gets the leftmost characters from a string. | StringFunc | ||
[statisch]
Removes whitespace from the front of the specified string. | StringFunc | ||
[statisch]
Returns the length of a string. | StringFunc | ||
[statisch]
Converts a string to lowercase. | StringFunc | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
[statisch]
Returns a copy of the string, with count characters removed from the specified start position. | StringFunc | ||
[statisch]
Creates a string that contains a specified number of repetitions of the specified string. | StringFunc | ||
[statisch]
Replaces first occurrence of search in the input string with replace. | StringFunc | ||
[statisch]
Replaces all occurrences of search in the input string with replace. | StringFunc | ||
[statisch]
Replaces all occurrences of search in the input string with replace. | StringFunc | ||
[statisch]
Replaces first occurrence of search in the input string with replace. | StringFunc | ||
[statisch]
Reverse the characters in a string. | StringFunc | ||
[statisch]
Returns the specified number of characters from the end (or right side) of the specified string. | StringFunc | ||
[statisch]
Removes trailing white space from a string. | StringFunc | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
[statisch]
Gets characters from a string, from the beginning to a character that is in a specified set of characters. | StringFunc | ||
[statisch]
Gets characters from a string, from the beginning to a character that is not in a specified set of characters. | StringFunc | ||
[statisch]
Returns true if string starts with a specified prefix. | StringFunc | ||
[statisch]
Extracts a substring from a string, beginning at s (start), of length c (count). | StringFunc | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
[statisch]
Removes whitespace from the start and end of a string. | StringFunc | ||
[statisch]
Converts a string to uppercase. | StringFunc | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
charAt | () | methode |
public static function charAt(s:String, pos:int):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Returns the character at the indicated position.
Parameters
s:String — String
| |
pos:int — Position - 0 is the first character in the string
|
String — Character
|
chr | () | methode |
compare | () | methode |
public static function compare(s1:String, s2:String):int
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Compares two strings lexicographically.
Parameters
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 | () | methode |
public static function compareNoCase(s1:String, s2:String):int
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Compare two strings lexicographically, ignoring case.
Parameters
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 | () | methode |
public static function endsWith(sub:String, str:String):Boolean
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Tests if this string ends with the specified suffix.
Parameters
sub:String — Suffix to test
| |
str:String — String
|
Boolean — true if the string ends with the suffix
|
find | () | methode |
public static function find(sub:String, str:String):int
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Returns the index of the substring within the string.
Parameters
sub:String — Substring to find
| |
str:String — String
|
int — Index of the substring, or -1 if not found
|
findLast | () | methode |
public static function findLast(sub:String, str:String):int
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Returns the index within this string of the rightmost occurrence of the specified substring.
Parameters
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 | () | methode |
public static function findLastNoCase(sub:String, str:String):int
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Returns the index within this string of the rightmost occurrence of the specified substring, ignoring case.
Parameters
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 | () | methode |
public static function findNoCase(sub:String, str:String):int
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Returns the index of the substring within the string, ignoring case.
Parameters
sub:String — Substring to find
| |
str:String — String
|
int — Index of the substring, or -1 if not found
|
findOneOf | () | methode |
public static function findOneOf(cset:String, str:String):int
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | 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.
Parameters
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 | () | methode |
public static function insert(sub:String, str:String, pos:int):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | 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.
Parameters
sub:String — String to insert
| |
str:String — String
| |
pos:int — Position to insert the substring
|
String — New string
|
left | () | methode |
public static function left(str:String, count:int):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Gets the leftmost characters from a string.
Parameters
str:String — String
| |
count:int — How many characters
|
String — Leftmost count characters of the given string
|
leftTrim | () | methode |
public static function leftTrim(input:String):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Removes whitespace from the front of the specified string.
Parameters
input:String — String whose beginning whitespace will be removed.
|
String — String with whitespace removed from the begining
|
len | () | methode |
lower | () | methode |
public static function lower(str:String):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Converts a string to lowercase.
Parameters
str:String — String
|
String — String, converted to lowercase.
|
removeChars | () | methode |
public static function removeChars(str:String, start:int, count:int):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | 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.
Parameters
str:String — String
| |
start:int — Starting character to remove
| |
count:int — Number of characters to remove
|
String — New string with the characters removed
|
repeatString | () | methode |
public static function repeatString(str:String, count:int):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Creates a string that contains a specified number of repetitions of the specified string.
Parameters
str:String — String
| |
count:int — Number of times to repeat str
|
String — New string
|
replace | () | methode |
public static function replace(input:String, search:String, replace:String):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Replaces first occurrence of search in the input string with replace. The search is case-sensitive.
Parameters
input:String — String to search
| |
search:String — What to look for
| |
replace:String — What to replace it with
|
String — New string
|
replaceAll | () | methode |
public static function replaceAll(input:String, search:String, replace:String):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Replaces all occurrences of search in the input string with replace. The search is case-sensitive.
Parameters
input:String — String to search
| |
search:String — What to look for
| |
replace:String — What to replace it with
|
String — New string
|
replaceAllNoCase | () | methode |
public static function replaceAllNoCase(input:String, search:String, replace:String):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Replaces all occurrences of search in the input string with replace. The search is case-insensitive.
Parameters
input:String — String to search
| |
search:String — What to look for
| |
replace:String — What to replace it with
|
String — New string
|
replaceNoCase | () | methode |
public static function replaceNoCase(input:String, search:String, replace:String):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Replaces first occurrence of search in the input string with replace. The search is case-insensitive.
Parameters
input:String — String to search
| |
search:String — What to look for
| |
replace:String — What to replace it with
|
String — New string
|
reverse | () | methode |
public static function reverse(s:String):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Reverse the characters in a string.
Parameters
s:String — String
|
String — New string with the characters in reverse order
|
right | () | methode |
public static function right(str:String, count:int):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Returns the specified number of characters from the end (or right side) of the specified string.
Parameters
str:String — String
| |
count:int — Number of rightmost characters
|
String — Rightmost count characters of the given string
|
rightTrim | () | methode |
public static function rightTrim(input:String):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Removes trailing white space from a string.
Parameters
input:String — String to trim
|
String — String with trailing whitespace removed
|
spanExcluding | () | methode |
public static function spanExcluding(str:String, cset:String):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | 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.
Parameters
str:String — String
| |
cset:String — Set of characters to stop on
|
String — Substring of str
|
spanIncluding | () | methode |
public static function spanIncluding(str:String, cset:String):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | 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"
Parameters
str:String — String
| |
cset:String — Set of characters to include
|
String — Substring of str
|
startsWith | () | methode |
public static function startsWith(prefix:String, input:String):Boolean
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Returns true if string starts with a specified prefix.
Parameters
prefix:String — Prefix string
| |
input:String — String
|
Boolean — true if the string starts with prefix
|
substring | () | methode |
public static function substring(str:String, s:int, c:int):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Extracts a substring from a string, beginning at s (start), of length c (count).
Parameters
str:String — String
| |
s:int — First character to extract (indexes start at 0)
| |
c:int — Number of characters
|
String — Substring
|
trim | () | methode |
public static function trim(s:String):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Removes whitespace from the start and end of a string.
Parameters
s:String — String
|
String — Copy of the string with no leading or trailing whitespace
|
upper | () | methode |
public static function upper(s:String):String
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Converts a string to uppercase.
Parameters
s:String — String
|
String — String converted to uppercase
|
Wed Jun 13 2018, 11:42 AM Z