Forum Moderators: open
[codes]
myClass\s*{[\s\w]*}
[/codes]
What it matches:
[codes]
myclass{
color
}
[/codes]
but what it doesn't match is:
[codes]
myclass{
color:red;
}
[/codes]
That is, it doesn't match : or ; etc.
How do I deal with it?
Thanks
You're probably using the wrong function with the RegExp, there are a few that all do slightly different things, please post your JavaScript.
[edit] Also download this, it's invaluable: http://weitz.de/regex-coach/ [/edit] [edited by: Dabrowski at 2:18 pm (utc) on Sep. 3, 2007]