Tagged Questions
0
votes
1answer
182 views
Perl stripping bad hex bytes in a utf string
I have a situation where my perl parser will read flat fixed-width input file based on the specification (start, end, length of each field defined) and will create a comma delimited file to be loaded ...
0
votes
4answers
261 views
How do I strip custom tags from text in a submitted html form using PHP/Perl?
I have a news submission form. I want it to be secure from XSS and the like by stripping all html tags. Then I will convert all other tags with this format
[tagname attributes][/closetagname]
To ...
0
votes
5answers
138 views
Splitting a changing string with perl
I have a bunch of strings in perl that all look like this:
10 NE HARRISBURG
4 E HASWELL
2 SE OAKLEY
6 SE REDBIRD
PROVO
6 W EADS
21 N HARRISON
What I am needing to do is remove the numbers and the ...
1
vote
3answers
11k views
How can I strip HTML in a string using Perl?
Is there anyway easier than this to strip HTML from a string using Perl?
$Error_Msg =~ s|<b>||ig;
$Error_Msg =~ s|</b>||ig;
$Error_Msg =~ s|<h1>||ig;
$Error_Msg =~ ...
0
votes
4answers
780 views
Stripping/Substitution with Perl Regex
So I'm quite new to programming in general, so this may be a stupid question, but I am specifically trying to use regexes to strip a CSS tag. Basically I have this:
.style1 {
font-size: 24px;
...
2
votes
2answers
195 views
Why isn't HTML::Obliterate obliterating my HTML?
I am trying to use the following code, which I have not been able to test yet, because I get the following errors:
#!/usr/bin/perl
use warnings;
use strict;
use Text::Wrap;
use Mail::Box::Manager;
...