I have a simple python regex re.search('<span[\w\W]*?>Members[\w\W]*?([\w\W]*?)</span>', str). I'd like to do the same in ruby.
From the docs, it appears that match should work. However when I try
/<span[\w\W]*?>Members[\w\W]*?([\w\W]*?)</span>/.match(str) I get a syntax error.
I know this is something obvious but would love some help. Thank you