in reply to should this backspace removal code be done better?
Update: I realized my error and changed \\b to [\b]. Which should now work.local $_ = "this is an\b\b\b correct\b\b\b\b\b\b\b\borrect usage"; s/(.[\b])//; print $_;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: should this backspace removal code be done better?
by eyepopslikeamosquito (Archbishop) on Oct 05, 2003 at 08:08 UTC |