Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^3: add a character at the end of a string

by reasonablekeith (Deacon)
on Dec 13, 2005 at 11:49 UTC ( [id://516292]=note: print w/replies, xml ) Need Help??


in reply to Re^2: add a character at the end of a string
in thread add a character at the end of a string

ok, here goes...

the / means just that, match a forward slash
the ? then says that you don't have to match the preceding character, but it will try to if it's there
Finally the $ ties the match to the very end of the string

So, if your string ends with a / it will be matched, and replaced with another slash, with no net effect.

However, if your script doesn't end with a slash, the whole substitution still matches because the slash was optional. In this case all we're matching is the 'end' of the string. The substitution then replaces this (zero-width) match with the new slash, which has the net effect in inserting the trailing slash.

for futher reading I’d recommend ‘perldoc perlre’ and the excellent “Mastering Regular Expressions” published by O’Reilly (which is superb)

---
my name's not Keith, and I'm not reasonable.
  • Comment on Re^3: add a character at the end of a string

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (6)
As of 2024-04-19 12:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found