ActionScript 3 AS3:正则表达式基本示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3:正则表达式基本示例相关的知识,希望对你有一定的参考价值。

////////////////////////////////////////////
//Example 1: 
////////////////////////////////////////////

var re:RegExp = /<font face=\u0022(.*)\u0022 >(.*)<\/font>/i;
var str:String = '<P ALIGN="LEFT"><FONT FACE="Arial" >this is a test</FONT></P>';

var result:Object = re.exec(str);
trace(result[1]);//Arial
trace(result[2]);//this is a test

////////////////////////////////////////////
//Example 2: Replace all of the single quotes with double
////////////////////////////////////////////

var str2:String = "This 'is' the 'first' time 'ever'";
	str2 = str2.replace(/\u0027+/g, '"');
	trace(str2);

以上是关于ActionScript 3 AS3:正则表达式基本示例的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3:正则表达助手

ActionScript 3 AS3使用正则表达式删除回车符和新行

ActionScript 3 AS3使用正则表达式检查并返回有效的英国邮政编码

ActionScript 3 中的正则表达式:如何排除复杂前缀?

AS3:正则表达式基础

AS3:正则表达式基本示例