in reply to Re^2: Different behaviour in characters in string vs. array?
in thread Different behaviour in characters in string vs. array?
I would like to know why it is different between string and list
qw() does split ' ' (separates words), not split // (separates characters). Had you used the former, you would have gotten the same result.
You might think those two are the same in this case, but they're not because of the bug I indentified.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Different behaviour in characters in string vs. array?
by Anonymous Monk on Dec 10, 2008 at 23:27 UTC |