I need to convert string like "/[\w\s]+/" to regular expression.

"/[\w\s]+/" => /[\w\s]+/

I tried using different Regexp methods like:

Regexp.new("/[\w\s]+/") => /\/[w ]+\//, Similarly Regexp.compile and Regexp.escape. But none of them returns as I expected.

Further more I tried removing backslashes

Regexp.new("[\w\s]+") => /[w ]+/ But not have a luck.

Then I tried to doing simply

str = "[\w\s]+"
=> "[w ]+"

It escapes. Now how could string remains as it is and convert to a regexp object?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 8 down vote accepted

Looks like here you need the initial string to be in single quotes (refer this page)

>> str = '[\w\s]+'
 => "[\\w\\s]+" 
>> Regexp.new str
 => /[\w\s]+/ 
link|improve this answer
2  
Yes or with slashes you could use eval: eval '/[\w\s]+/' – pguardiario Dec 28 '11 at 7:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.