regex: \<start-of-word, and end-of-word\> not in gsub?

S

Shea Martin

I often use \< and \> to denote the start and end of word. But they
don't seem to work with gsub. Am I missing something?

I would expect the following:
"xword1 word2 tword3".gsub( /\<word, 'XXXX' )

to return "xword1 XXXX2 tword3", but instead it the string unchanged.

If the \< and \> are not supported, is there an alternative that ruby
provides? Thanks.

Thanks,

~S
 
R

Rodrigo Bermejo

Shea said:
I often use \< and \> to denote the start and end of word. But they
don't seem to work with gsub. Am I missing something?

I would expect the following:
"xword1 word2 tword3".gsub( /\<word, 'XXXX' )

to return "xword1 XXXX2 tword3", but instead it the string unchanged.

If the \< and \> are not supported, is there an alternative that ruby
provides? Thanks.

Thanks,

~S

"xword1 word2 tword3".gsub( /\bword/, 'XXXX' )

$rm rm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,540
Members
45,024
Latest member
ARDU_PROgrammER

Latest Threads

Top