0
  var sample:String = filterBox.text; 

根据我从 TextInput 获得的字符串,如果字符串只有空格,则必须禁用按钮,否则只能启用。

我想检查字符串是否只有空格。

flex中是否/是否有任何内置方法?我看到了一些 Java 使用 trim 方法的答案。但它在 Flex 中不可用。请帮帮我。

4

2 回答 2

2

使用

private const r:RegExp = /\S/;

private function isEmpty(str:String):Boolean {
    return = !r.test(str);
}

然后

trace(isEmpty("hello world")); //false
trace(isEmpty("  ")); //true
trace(isEmpty(" ")); //true
于 2013-10-09T15:35:13.977 回答
2

您可以执行以下操作

StringUtil.trim(字符串);

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/utils/StringUtil.html

String 有很多匹配模式的方法,你可以在这里找到它。 http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/String.html

于 2013-10-09T15:58:20.640 回答