Been trying to get this to work all day, but I'm not very good at regular expressions.
A properly formatted string in my case looks like
String s = "10 LET D = 4";
and I'm trying to create a regular expression to make sure that it's properly formatted.
Right now I'm just doing
boolean b = s.matches("[0-9]+ GOTO|LET [a-zA-Z] +|= [0-9]+");
But I know there's something wrong with my GOTO|LET thing, since I kind of just made that up. It didn't work with brackets around it either so I'm a bit lost at this point. Is what I'm trying to do even possible with regex? If not, any other suggestions?
5 GOTO D = 3legal? I have some assumptions about this language and I'm just curious if they are right. – Tim Bender Jul 6 '11 at 2:00