文章列表
各式各样的正则表达式参考大全(访问正则表达式实例库):
^\d+$ //匹配非负整数(正整数 + 0)
//匹配整数 ^\d+(\.\d+)?$ //匹配非负浮点数(正浮点数 + 0)
^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))$ ...
<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute" width="486" height="356"
applicationComplete="onAppInit();" >
<mx:Script& ...