Hey guys, I don’t know RegExp yet. I know a lil about it but I’m not experience user.
Supposed that I run a RegExp match on a website, the matches are:
Data: Informations Data: Liberty
Then I want to extract only Informations and Liberty, I don’t want the Data: part.
Data:always appear at the begining of a line?:and the next word?If so, you can use (with lazy matching):
With character classes:
if you know that it’ll always be a word. Try this website.