Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: checking particular part of string

by hippo (Bishop)
on Mar 07, 2014 at 12:12 UTC ( [id://1077372]=note: print w/replies, xml ) Need Help??


in reply to checking particular part of string

To make it generic you would need a capture group. eg:

echo sumanna | perl -pe 's/(na$)/uc($1)/e;'

Is this what you were after?


Update: for an example with more obvious genericism try:

echo sumanna | perl -pe 's/(..$)/uc($1)/e;'

Replies are listed 'Best First'.
Re^2: checking particular part of string
by moritz (Cardinal) on Mar 07, 2014 at 12:17 UTC

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (4)
As of 2024-04-23 15:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found