Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Regex: Case insensitive search but case sensitive replace

by ysth (Canon)
on Nov 17, 2003 at 10:37 UTC ( #307621=note: print w/replies, xml ) Need Help??


in reply to Regex: Case insensitive search but case sensitive replace

Replacements are always done with exactly the case you specify, so s/jane/###Jane###/i will replace any of JaNe, janE, JAne, etc with ###Jane###.

If you mean you want to capture some names and replace them having a capital letter first and lower thereafter, try something like s/(j\wn\w)/"###".ucfirst(lc($1))."###"/ie

Update: That turns out not to be the answer to the question the seeker was trying to ask. However, you can also do the above this way: s/($name)/###\u\L$1###/i

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://307621]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others chanting in the Monastery: (1)
As of 2023-09-26 22:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?