|
|
Browse by Tags
All Tags » php regular exp... » whitespace
-
I'm currently working for a php tool, and I need to capture some element like I'd do with (.+?) but I need it not to contain an 'a' preceded by a whitespace, basically not containing (\sa), is there some way to do this?
Mind you, it should work for a\s, \s[^a]a and such other options. If an input like "xyz a ajkl" is ...
|
|
|