[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [ic] Stripping CR/LF from form input


On 04/22/2006 08:12 PM, DB wrote:
# filter to strip "returns" from coments
CodeDef no_crlf Filter
CodeDef titlecase Routine <<EOR
 sub {
 my $val = shift;
 $val =~ s/[\x00-\x1F]+/ /g;

$val =~ s/[\r\n]+/ /g;

 return $val;
 }
EOR

You realise that you're adding in linefeeds here (one above the data and one below)? Try it as one line instead.

<TEXTAREA NAME="notes">
[filter no_crlf]
[data table=transactions col=notes key=[loop-code]]
[/filter]
</TEXTAREA>

Peter
_______________________________________________
interchange-users mailing list
suppressed
http://www.icdevgroup.org/mailman/listinfo/interchange-users


Mail converted by mhonarc 2.6.15
This archive provided courtesy of JSW4.NET, Internet Hosting Services for Small Business.