Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Strip part of url

by silent11 (Vicar)
on Feb 11, 2011 at 19:41 UTC ( [id://887667]=note: print w/replies, xml ) Need Help??


in reply to Strip part of url

my $url = "http://google.com/folder/1234.html"; my @parts = split /\//, $url; (my $numbers )= $parts[-1] =~ m/(\d+)/; print $numbers; # 1234

Replies are listed 'Best First'.
Re^2: Strip part of url
by roboticus (Chancellor) on Feb 11, 2011 at 20:53 UTC

    silent11:

    That's a bit wordy, and you're using multiple regular expressions. If you make your regular expression a little more complex, you can do it like this:

    my $url = "http://google.com/folder/1234.html"; my $numbers = $url; $numbers =~ s#^.*(\d+)[^/]*$#$1#; print $numbers;

    ...roboticus

    When your only tool is a hammer, all problems look like your thumb.

Re^2: Strip part of url
by htmanning (Friar) on Feb 11, 2011 at 20:00 UTC
    Perfect. Thanks so much!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (6)
As of 2024-04-25 09:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found