Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Remove digits from a string and add timestamp to the result

by johngg (Canon)
on Jan 02, 2013 at 12:03 UTC ( [id://1011254]=note: print w/replies, xml ) Need Help??


in reply to Remove digits from a string and add timestamp to the result

What with your earlier post and this one it is not clear what your overall aim is. Could it be that you want to move the timestamp from the front to the middle? Perhaps you could explain more clearly what you are trying to achieve from both nodes.

$ perl -Mstrict -Mwarnings -E ' > my $filename = q{20130101Customer100.imp}; > say $filename; > substr( $filename, 8, 0 ) = do { > my $ts = substr $filename, 0, 8, q{}; > qq{_${ts}_}; > }; > say $filename;' 20130101Customer100.imp Customer_20130101_100.imp $

I hope this wild guess is useful.

Cheers,

JohnGG

Log In?
Username:
Password:

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

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

    No recent polls found