I’ve tried using a String Manipulation Node, with the following:
replaceChars($Text$, “\b\w{1,1}\b”, “”) But instead of grabbing all words of length 1, it’s removing all w’s.
https://regexr.com/ shows that regular expression should work fine?
@Bart_Humphries you might have to double escape the backslashes.
1 Like
2 Likes
I ended up switching from a String Manipulation node to a String Replacer node, then setting the “Replacement strategy” to all occurrences.
I changed it to \b\w{1,3}\b to get rid of all words shorter than four characters.
2 Likes
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.