in reply to
How can I delete a part of a string?
What part of the string do you want to delete?
You might assign "" to a
substr
, or you might use
s///
, or perhaps
chomp
or
chop
, depending on how you specify the part to be deleted.
Comment on
Re: How can I delete a part of a string?
In Section
Seekers of Perl Wisdom