Take this Lorem Ipsum text:
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla felis diam, mattis id elementum eget, ullamcorper et purus.
How can I with PHP and regex get everything that comes after Nulla?
|
|
Hmm you don't want to use some simple things like :
if you do not want to look for Nulla, but also for 'null' you might consider using stripos instead of strpos... This code will include Nulla in the returned value. If you want to exclude Nulla, you might want to add it's lentgh to the strpos value Honestly regexp are overkill for something like this... |
|||
|
|
|
Try this:
|
|||
|
|
|
|||
|
|