Forum Discussion
kenchan
4 years agoFrequent Visitor
Remove Text Between - Power BI
I am working on removing some text with pattern below "[cig ...]"; "[http ...]"; "[data ...]"; by creating 3 fucntions. Attached 1 at the bottom as reference. However, when I apply the function, some...
Anonymous
4 years agoNot applicable
There's probably some limit, like 32,7xx characters.
But couldn't you use those tags as the delimiter, use Text.BetweenDelimiters to get your substrings, and then use those each of those substrings as a parameter to Text.Replace, and replacing with nothing?
Im not at my desk, but you seem to understand functions. Hopefully this gets you started, I'll be in later to check back.
--Nate
- kenchan4 years agoFrequent Visitor
Thank you for your insight. I try; I believe it solved part of my question. However, if the cell have happen the pattern twice, it may not able to handle at once time. Is there any fucntion which I can handle this?