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

Re: How do you add .RTF to a file

by young_david (Friar)
on Jun 05, 2003 at 14:30 UTC ( [id://263343]=note: print w/replies, xml ) Need Help??


in reply to How do you add .RTF to a file

If you wanted to do pattern matching:

my $oldfile = 'file1'; my $newfile =~ s/$/.rtf/; # Search for the end of a string and # replace it with the extension

Replies are listed 'Best First'.
Re: Re: How do you add .RTF to a file
by young_david (Friar) on Jun 05, 2003 at 14:41 UTC
    UPDATE: Sorry, I just realized I made a mistake, should have written like this:
    my $file = 'file1'; $file =~ s/$/.rtf/; # $file will now contain the .rtf extension

Log In?
Username:
Password:

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

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

    No recent polls found