<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"
creationComplete="onComplete();">
<mx:Script>
<["']/);
// array is null if no matches found:
if ( faces != null ) {
face = faces[1];
}
var sizes:Array = content.match(/size\s*=\s*["'](\d{1,})["']/);
// array is null if no matches found:
if ( sizes != null ) {
size = sizes[1];
}
var colors:Array = content.match(/color\s*=\s*["'](.[^"']*)["']/);
// array is null if no matches found:
if ( colors != null ) {
color = colors[1];
}
Alert.show("Font : " + face + ", " + size + ", " + color + "." );
}
]]>
</mx:Script>
</mx:WindowedApplication>
希望这能有所帮助。