guide and example
3 years ago
First, I read this guide.
Next, here’s an example to puzzle over:
sentence.gsub( /\([-\w]+\)/, ’’ )
This example will find the literal parens characters with one or more words in between and replace them with nothing.
