in reply to split text into words -- Unicode problem (I guess)
$_ = "a\x{2625}\x{10000}"; print map { sprintf "%x\n", ord } m/(\p{L})/g; 61 10000
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: split text into words -- Unicode problem (I guess)
by bogdan77 (Initiate) on Mar 29, 2007 at 14:49 UTC | |
by bogdan77 (Initiate) on Mar 29, 2007 at 14:55 UTC | |
by Anonymous Monk on Mar 31, 2007 at 10:02 UTC | |
by dk (Chaplain) on Mar 29, 2007 at 15:10 UTC | |
by bogdan77 (Initiate) on Mar 29, 2007 at 15:25 UTC |