Paket | mx.utils |
Klass | public class StringUtil |
Arv | StringUtil Object |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
StringUtil.substitute()
method.
Metod | Definieras med | ||
---|---|---|---|
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
[statisk]
Returns true if the specified string is
a single space, tab, carriage return, newline, or formfeed character. | StringUtil | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
[statisk]
Returns a string consisting of a specified string
concatenated with itself a specified number of times. | StringUtil | ||
[statisk]
Removes "unallowed" characters from a string. | StringUtil | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
[statisk]
Substitutes "{n}" tokens within the specified string
with the respective arguments passed in. | StringUtil | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returnerar det angivna objektets strängbeteckning. | Object | ||
[statisk]
Removes all whitespace characters from the beginning and end
of the specified string. | StringUtil | ||
[statisk]
Removes all whitespace characters from the beginning and end
of each element in an Array, where the Array is stored as a String. | StringUtil | ||
Returnerar det angivna objektets primitiva värde. | Object |
isWhitespace | () | metod |
public static function isWhitespace(character:String):Boolean
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns true
if the specified string is
a single space, tab, carriage return, newline, or formfeed character.
Parametrar
character:String — The String that is is being queried.
|
Boolean — true if the specified string is
a single space, tab, carriage return, newline, or formfeed character.
|
repeat | () | metod |
public static function repeat(str:String, n:int):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 4.1 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
Returns a string consisting of a specified string concatenated with itself a specified number of times.
Parametrar
str:String — The string to be repeated.
| |
n:int — The repeat count.
|
String — The repeated string.
|
restrict | () | metod |
public static function restrict(str:String, restrict:String):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 4.1 |
Körningsmiljöversioner: | Flash Player 10, AIR 1.5 |
Removes "unallowed" characters from a string.
A "restriction string" such as "A-Z0-9"
is used to specify which characters are allowed.
This method uses the same logic as the restrict
property of TextField.
Parametrar
str:String — The input string.
| |
restrict:String — The restriction string.
|
String — The input string, minus any characters
that are not allowed by the restriction string.
|
substitute | () | metod |
public static function substitute(str:String, ... rest):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Substitutes "{n}" tokens within the specified string with the respective arguments passed in.
Parametrar
str:String — The string to make substitutions in.
This string can contain special tokens of the form
{n} , where n is a zero based index,
that will be replaced with the additional parameters
found at that index if specified.
| |
... rest — Additional parameters that can be substituted
in the str parameter at each {n}
location, where n is an integer (zero based)
index value into the array of values specified.
If the first parameter is an array this array will be used as
a parameter list.
This allows reuse of this routine in other methods that want to
use the ... rest signature.
For example public function myTracer(str:String, ... rest):void { label.text += StringUtil.substitute(str, rest) + "\n"; } |
String — New string with all of the {n} tokens
replaced with the respective arguments specified.
|
trim | () | metod |
public static function trim(str:String):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Removes all whitespace characters from the beginning and end of the specified string.
Parametrar
str:String — The String whose whitespace should be trimmed.
|
String — Updated String where whitespace was removed from the
beginning and end.
|
trimArrayElements | () | metod |
public static function trimArrayElements(value:String, delimiter:String):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Removes all whitespace characters from the beginning and end of each element in an Array, where the Array is stored as a String.
Parametrar
value:String — The String whose whitespace should be trimmed.
| |
delimiter:String — The String that delimits each Array element in the string.
|
String — Updated String where whitespace was removed from the
beginning and end of each element.
|
Tue Jun 12 2018, 01:40 PM Z