- Introduction to WorkXpress
- Building Your Application
- Examples and Best Practices
- Technical Manual
The Strip Html function (STRIP_HTML) is used to remove html tags from a string of text. Most often used to clean up strings of text that need their special formatting removed.
The Strip Html function has one required parameter:
Allowed Inputs: field value or text string
This is the string that will be stripped of its html tags.
A common use for this function is to remove unwanted html formatting from a string. For example
STRIP_HTML("<span style="font-weight: bold">This is BOLD text.</span> This is normal text.")
would result in “This is BOLD text. This is normal text”.