Toby Stuart <[EMAIL PROTECTED]> asked: > I'm trying to remove chars 00-29 from an XML document and > need a regular expression to do so... > > Before: $s = "abc@123"; > After : $s should only contain: "abc@123"
$s =~ s/(&#(\d+);)/$2<=29?"":$1/eg; HTH, Thomas -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>