Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Replacing parts of a string

by Tomte (Priest)
on Apr 11, 2003 at 14:22 UTC ( [id://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.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-04-23 08:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found