I'm trying to match part of a string to a yes or no answer. The string goes either: '{"valid_js":"yes"...' or '{"valid_js":"no"...'. I'm trying to get the "yes" or "no"
Can I just use something like:
/:."yes"/g
Or do I need something more complicated?