A
Austin Ehlers
Happy new years everybody!
Alright, I've got a string, with this as an example:
Title: The title of something
Title may or may not be followed with a colon
), dash (-), or a
space-dash ( -)
I need to extract "The title of something". Here's what I got so far:
^(Title)[:\- ]|( \-)
which, I think, will match all possible varieties that I need. But
how do I extract whatever is to the right of it?
Thanks,
Austin Ehlers
Alright, I've got a string, with this as an example:
Title: The title of something
Title may or may not be followed with a colon

space-dash ( -)
I need to extract "The title of something". Here's what I got so far:
^(Title)[:\- ]|( \-)
which, I think, will match all possible varieties that I need. But
how do I extract whatever is to the right of it?
Thanks,
Austin Ehlers