strip
*** DEPRECATED *** Strip all whitespace from the content. This is equivalent to a 'replaceAll' with a regular expression of '\s+'.
| Tag Summary |
| required |
<f:strip>
content consumed by tag evaluation
</f:strip>
|
| full tag |
<f:strip>
content consumed by tag evaluation
</f:strip>
|
| Example |
|
|
<%-- This will result 'abc' --%>
<f:strip>
a b c
</f:strip>
|