in reply to attempting to achieve something
#!/usr/bin/perl use warnings; use strict; sub mixedregex { s[\\0([0-7]{3})][chr oct $1]egr; } $_ = '\0123'; print mixedregex(); # S
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
| A reply falls below the community's threshold of quality. You may see it by logging in. |