4.72. strip
Strips leading and trailing whitespace from the contained body text.
4.72.1. Summary
[strip]
Body text to strip
[/strip]
No parameters.
| Other_Charactreristics | |
| Invalidates cache | No |
| Container tag | Yes |
| Has Subtags | No |
ASP-like Perl call:
$Tag->strip($BODY);
or even better, just do it directly like this
$BODY =~ s/^\s+//; $BODY =~ s/\s+$//;