in reply to Re^3: cut of first char of a string
in thread cut of first char of a string
That gives "a". I'd expect nothing to get printed - if I remove the first character of a one-character string, I should be left with the empty string, not with the same string.$_ = "a"; s/(.(.*))/($2ne'')?$2:$1/e; print
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: cut of first char of a string
by sh1tn (Priest) on Mar 08, 2005 at 15:27 UTC |