I fount this link regarding my post How to extract a substring using regex but it is in java.
let's say i have a sentence:
var sentence = "This is a long sentence but I only want this 'information'";
Then i want to extract the value in the quotation marks (the value: information) and store it in a variable. What do I do?