Zugzwangle Posted August 4, 2010 Share Posted August 4, 2010 hi, what would the regular expression be to search for "[+anyword+1 space"... im trying to get to grips with it all!! Quote Link to comment Share on other sites More sharing options...
cags Posted August 4, 2010 Share Posted August 4, 2010 \[ - matches a square bracket (the backslash escapes it because otheriwse it will have a special meaning). \w+ - matches one or more word characters a single space character will match a single space character or \s will match a whitespace character, or if you wish it to be a bit more viewable [ ] will match a space. You should be able to come up with something from there. Post what you get if you can't figure it and we'll see where we can go from there. Quote Link to comment Share on other sites More sharing options...
Zugzwangle Posted August 4, 2010 Author Share Posted August 4, 2010 Thank you for explaining it - you are very kind Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.