[flexcoders] Re: Flex RegExp issues ...

2009-02-09 Thread SJF
I haven't read into this thread, but here is a link to a great RegExp online app. built by Grant Skinner: http://www.gskinner.com/RegExr/

[flexcoders] Re: Flex RegExp issues

2009-02-09 Thread mmormando
We faced a similar problem where I'm working, everyone had to implement a filtering mechanism using user input, including some special characters. While we were comparing solutions it was noted that all but mine had troubles with the special characters.I was just using indexOf(string)>-1 rather

Re: [flexcoders] Re: Flex RegExp issues

2009-02-09 Thread Maciek Sakrejda
] Re: Flex RegExp issues Date: Mon, 09 Feb 2009 14:53:24 - We faced a similar problem where I'm working, everyone had to implement a filtering mechanism using user input, including some special characters. While we were comparing solutions it was noted that all but mine had troubles wit