I have a string that has two single quotes in it, the \' character. In between the single quotes is the data I want.
\'
How can I write a regex to extract
String dataIWant = mydata.split("'")[1];
See Live Demo