4.74. strip

Strips leading and trailing whitespace from the contained body text.

4.74.1. Summary

    [strip]
       Body text to strip
    [/strip]

No parameters.

Other_Characteristics  
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+$//;