in reply to Re: Altering regular expression trees
in thread Altering regular expression trees
If doing the above is 'naughty' in any way please tell me, I have no idea of the plethora of caveats it possibly entails :)use strict; use IPC::Open3; + + my $debug = open3(\*WRITE, \*READ, \*ERROR, "perl -Mre=debug -e 'qr/.. +./'"); #old incorrect stuff :) #while (<READ>||<ERROR>) { # my (@read, @error) = (<READ>, <ERROR>); # print "READ: @read\n"; # print "ERROR: @error\n"; #} print <ERROR>; close(\*WRITE, \*READ, \*ERROR);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Altering regular expression trees
by diotalevi (Canon) on Jul 30, 2003 at 07:46 UTC |