Hello experts. I am struggling with my attempts to find either the correct formula or RegEx expression which will remove certain HTML tagging from a specific column in my dataset.
I have the following tags which I am trying to remove:
The raw text appears as
I have attempted to utilize the following Formula with no success (undesired text remains):
I have attempted to utilize the RegEx expression and a few others with no success (undesired text remains)
(<p style="position: static;">\s)
I appreciate any help the experts can provide!
Solved! Go to Solution.
Are there tags you need to keep? If you need to remove all HTML tags you can use this as your regex.
REGEX_REPLACE([Rule Name],<[^>]+>,"")
Thank you for the suggestion. No, I do not want to keep any part of the tag - I wish to remove it entirely.
I utilized the formula and received an error - "Parse Error at char(25): Malformed Function Call (Expression #1).
I just figured out the issue with the formula. The text that I want to replace was not surrounded by quotation marks. The correct syntax for the formula is:
REGEX_REPLACE([Rule Name],"<[^>]+>","")