Beefy Boxes and Bandwidth Generously Provided by pair Networks chromatic writing perl on a camel
more useful options
 
PerlMonks  

Re: Replacing parts of a string

by Tomte (Priest)
on Apr 11, 2003 at 14:22 UTC ( #249894=note: print w/ replies, xml ) Need Help??


in reply to Replacing parts of a string

Just to provide another way:

my $string = "calendarview.pl?loginid=102138&month=04&year=2003&studen +t_id=&user_type=TUTOR&CalendarName=102138Academic&framename=top.index +_main&session_number=618280744437303"; my $i = index($string,"CalendarName=") + length("CalendarName="); my $j = index($string, "&", $i); substr($string,$i,$j-$i) = "";

I don't recommend it, but I'm always astounded that this is possible, maybe one enlightened monk can come up with a suggestion where this lvalue-assignement (?!?) is useful.
Update: in Re: Replace zero-width grouping?, BrowserUk comes up with a good use of an substr lvalue--assignement.

regards,
tomte


Hlade's Law:

If you have a difficult task, give it to a lazy person --
they will find an easier way to do it.


Comment on Re: Replacing parts of a string
Download Code

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others examining the Monastery: (14)
As of 2013-05-24 13:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    The best material for plates (tableware) is:









    Results (506 votes), past polls