Howto regex for matching a string, which contains characters and spaces ?
Text:
Blabla === This is my Text === Blablabla
My Regex so far:
===(.?)===
I would like to simply match:
=== This is my Text ===
===(.*?)===
You missed the *
or the quantifier.+
is the other quantfier.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With