ActionScript 3 AS3使用RegExp检查数字和字母

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3使用RegExp检查数字和字母相关的知识,希望对你有一定的参考价值。

var s:String = "dog123";
var regNum:RegExp = /[0-9]/;

trace ("String: "+s);

// one-off check using the 'new RegExp' class
trace("Char 2 is a letter = "+(new RegExp("[A-Za-z]")).test(s.substr(1,1)));

// looped check using RegExp var created above
for (var i:int=0; i<s.length; i++)
{
	trace("Char "+(String(i+1))+" is a number = "+regNum.test(s.substr(i,1)));
}

// set a boolean with the result of the RegExp test
var stringIsNumber:Boolean = new RegExp("[0-9]").test(new String("A"));
trace("'A' is a number = "+stringIsNumber);

以上是关于ActionScript 3 AS3使用RegExp检查数字和字母的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3:在ActionScript中使用E4X生成动态XML

ActionScript 3 使用Blitting的AS3动画

ActionScript 3 AS3:使用POST发送数据

ActionScript 3 在AS3中使用麦克风

ActionScript 3 使用AS3读取不同的文件类型

ActionScript 3 AS3使用RegExp检查数字和字母