Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^2: how to a specific group of files from source directory to destination directory

by asdfghjkl (Initiate)
on Oct 20, 2007 at 09:15 UTC ( [id://646160]=note: print w/replies, xml ) Need Help??


in reply to Re: how to a specific group of files from source directory to destination directory
in thread how to a specific group of files from source directory to destination directory

i am very thank ful for the help extended same thing i its working how can i reverse the content of each file?? i.e if a file contains lee jones can i have it as jones lee.

20071110 Edited by Co-Rion: Restored content

  • Comment on Re^2: how to a specific group of files from source directory to destination directory

Replies are listed 'Best First'.
Re^3: how to a specific group of files from source directory to destination directory
by roboticus (Chancellor) on Oct 20, 2007 at 12:55 UTC
    asdfghijkl:

    You could get a hint from the documentation:

    perldoc -f reverse

    but I have this on the shelf:

    #!/usr/bin/perl -w print join(" ", reverse split /\s/), "\n" for (reverse <STDIN>);
    ...roboticus
Re^3: how to a specific group of files from source directory to destination directory
by blazar (Canon) on Oct 20, 2007 at 13:04 UTC
    i am very thank ful for the help extended same thing i its working how can i reverse the content of each file?? i.e if a file contains lee jones can i have it as jones lee.

    I personally believe that since this is a wholly different question, then you should start a new thread. Notice: one new thread, not a hundred like the list time. Before you do so, please pause a little, take a deep breath and review your requirements: your specs as of now are far too poor - are your files expected to only contain strings like "lee jones"? In the IMHO unlikely case that is actually so, you may be content with

    print reverse split /(\s+)/;

    in conjunction with the $^I special variable. If you only want to replace the fixed string "lee jones" with "jones lee" everywere, then

    s/lee jones/jones lee/g;

    may be enough. But things may become trickier if spacing is not uniform, case does matter and you want to preserve it, and so on. In any case, you have to tell us.

Log In?
Username:
Password:

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

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

    No recent polls found