Hi I have a very long text standard and I want to take a part of a string after a standard string:
$string = "bla bla bla... Refer: my text /n bla bla bla";
I want to take the string: my text. Is ever after Refer: and before a /n or /r.
Is possible with a regular expression?
I have done this wit substr and strpos but I want to optimize my text.
substrandstrposalong with their multibyte counterparts are more efficient than regular expressions.