Hi everyone,
I need to cut off the last seven characters of a string (a string that is stored in a hash). What is the easiest way to do that in perl? Many thanks in advance!
Abdel
|
|
|
|
|
|
|
With
I suggest you read the Perldoc page on Also, in the future, please consider Googling your question (or, in the case of Perl, looking it up on Perldoc) before asking it here. You can find great resources on things like this without having to ask questions here. Not to put down your question, but it's pretty simple, and I think if you tried, you could find the answer on your own. |
||
|
|
Use the perl
This will return the string "str" with a newline, since we specified truncating the last three characters. Take a look at the Perl documentation on substr(). |
||
|
|
|
|
To remove the last 7 characters:
or the somewhat inelegant
To get all but the last 7 characters:
|
||
|
|