in reply to assign array to hash
The doc says:([\S\s]+)
\s Match a whitespace characterSo, that would be the same as:
\S Match a non-whitespace character
(.+)
This is not an optical illusion, it just looks like one.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: assign array to hash
by choroba (Cardinal) on Apr 06, 2016 at 22:15 UTC |