<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" xmlns:components="com.appdivision.components.*" viewSourceURL="srcview/index.html"> <mx:Script> <![CDATA[ [Bindable] public var validDecimal:RegExp = /^\d*\.?\d*$/; ]]> </mx:Script> <mx:Label fontWeight="bold" text="Input is restricted to the pattern: /^\d*\.?\d*$/" /> <mx:FormItem label="Only valid decimals are allowed in this TextInput - "> <components:RegexTextInput regex="{validDecimal}" width="120" /> </mx:FormItem> </mx:Application>