From: Matt Z. <mzagrabe@d.umn.edu> - 2011-07-05 21:09:28
|
On Tue, Jul 5, 2011 at 3:32 PM, Jo Rhett <jr...@ne...> wrote: > I'm seeing a scenario where talking with an Accedian NID unit I receive \b > in the output from the unit. Unfortunately \b means "word boundary" in perl > regex-land. How can I match this character? (it is a single character and > not two) It's been a while since I've Expect-ed, but here is an off the cuff idea: octal code? *goes and checks* I found the following reference: s/[\000-\037]/ /g at: http://www.perlmonks.org/?node_id=164831 You could use that as a starting point. -matt z |