How do I remove white space in a Perl string?

后端 未结 12 1895
离开以前
离开以前 2020-12-31 09:34

If I declared a variable $myString with the value \'3 \' (notice the white space). Is there any function to remove the white space for the return v

12条回答
  •  天涯浪人
    2020-12-31 10:11

    Another potential alternative solution is Text::Trim from CPAN, which will "remove leading and/or trailing whitespace from strings". It has a trim function which may suit your needs.

提交回复
热议问题