I have the following piece of regex which works in an online regex tester:
assetName">([^"]+)</span>
I want to use this in a Beanshell Script like this:
Pattern p = Pattern.compile("assetName">([^"]+)</span>");
How do I handle the double quotes here? Thanks