Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: parsing question

by Zaxo (Archbishop)
on May 28, 2003 at 12:54 UTC ( [id://261279]=note: print w/replies, xml ) Need Help??


in reply to parsing question

Concentrating on

basically i want to search and trim (0+ spaces);(0+chars) AFTER the last >
as the actual requirement:
substr( $line, rindex( $line, '>')) =~ s/\s*;\w*//; # typo corrected, s/:/;/ in the regex
That has a certain amount of magic in it that I should explain. The substr function is an lvalue, meaning that the string of its first argument is modifiable through it. The rindex function finds the last '>' in $line, making substr deal with only the portion of $line that follows that position. Effectively, the substitution is restricted to the part of $line that you specified.

After Compline,
Zaxo

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-19 17:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found