I am stuck with creating a regular expression that match any string:
1- contains "<p>\S</p>" in the middle of text
2- doesn't contain <p>\S</p> at the beginning or at the end of the text
Thanks for your help
|
I am stuck with creating a regular expression that match any string: Thanks for your help |
|||
|
From the comments it looks like you want to match a single whitespace between You can try:
The part The part The part If you are using this in PHP you should put the regex between a pair of delimiter as:
|
||||
|
|
\Sany non-space char or you want to literally match\S? – codaddict Jan 4 '11 at 7:47\Sis any non-whitespace.\sis any whitespace. – codaddict Jan 4 '11 at 7:57