in reply to Re^17: Is an aXML compiler possible?
in thread Is an aXML compiler possible?
Impressive :)
Let me guess, you did this;
my $data =~ s@</code>@@gs;
Hrm... nope...
Ahhh rtfm!
</c>@@gs; </code>my $data =~ s@<c>
Blah... one more try..
my $data =~ s@</code>@@gs;
Ok that's lovelly... now how would you do this:
@@gs; </c>my $data =~ s@</code>@@gs; my $data =~ s@
Oops I did it again!
Incase anyone is wondering; the above literally looks like:
<c>
my $data =~ s@</code>@@gs;
my $data =~ s@</c>@@gs;
</c>
I'm having to write more and more complex string literals to express the output required.
Sorry, am I being obtuse?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^19: Is an aXML compiler possible?
by Anonymous Monk on Oct 31, 2011 at 14:52 UTC | |
by Logicus (Initiate) on Oct 31, 2011 at 15:30 UTC | |
by Anonymous Monk on Oct 31, 2011 at 19:27 UTC | |
by Logicus (Initiate) on Oct 31, 2011 at 20:22 UTC | |
by Anonymous Monk on Oct 31, 2011 at 21:02 UTC | |
|