For some reason I can't seem to match a parentheses in Flex using Regex to save my life.
What's wrong with this?
var commandTxt:String = "switchview(adf)";
var switchViewArray:Array = commandTxt.match(new RegExp("switchview\(", "i"));
I've tried dozens of things, but I can't seem to get a match the parentheses. What's the catch here?