I have a string with multiple lines. For this example, my string will be this:
Name:Jaxo
Description:A person on Stackoverflow
Question:$this->questionName();
How could I get just, say, the 'Description'? I need everything after the description, ie 'A person on Stackoverflow'. I've tried a regex like this, but it doesn't work: /^Description:(.+?)\n/i
Any help is much appreciated!
Thanks
-Jaxo