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.replaceFirst(".*'(.*?)'.*", "$1");