http://www.perlmonks.org?node_id=994615


in reply to Re: Substituting white spaces with a tab changes my string into numeric value
in thread Substituting white spaces with a tab changes my string into numeric value

Thank you too.

I figured that somehow I got a numerical value of the number of tabs, since when I used:

 s/\s+/\t/

(thus without the "g") the number that was returned was 1 (instead of 2). I had no idea however, how this was caused.

I frequently fail to recognize this kind of "equivalents". I hope this is just being new to perl.......

  • Comment on Re^2: Substituting white spaces with a tab changes my string into numeric value
  • Download Code