how to use a regular expression to extract json fields?

/”(url|title|tags)”:”((\\”|[^”])*)”/i I think this is what you’re asking for. I’ll provide an explanation momentarily. This regular expression (delimited by / – you probably won’t have to put those in editpad) matches: ” A literal “. (url|title|tags) Any of the three literal strings “url”, “title” or “tags” – in Regular Expressions, by default Parentheses are used … Read more