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

Re: using split on a string

by damian1301 (Curate)
on May 14, 2001 at 07:25 UTC ( [id://80135]=note: print w/replies, xml ) Need Help??


in reply to using split on a string

You are splitting on a whitespace so it only splits it once (because you only have two variables to throw it in) and throws the rest out. What you want is:
my $pubupload = q"C:\Documents and Settings\Administrator\Desktop\chin +a.txt"; $pubupload =~ /(?:.*)\\(.*?\..*)$/; print $1;

When ran, the code gives this output:
china.txt
And of course to fine the extension, you can split it up from there.

($junk, $extension)=split/\./,$1;/;
NOTE: I couldn't get split/\./,$pubupload; to work on the whole string, any ideas why?

Tiptoeing up to a Perl hacker.
Dave AKA damian

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (1)
As of 2024-04-25 00:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found