The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Hi everybody. How can I use stopword with 2 words per line in stopword dictionary filter
Phanchinhnd
Member Posts: 2 Learner I
Hi everybody. How can I use stopword with 2 words per line in stopword dictionary filter
Tagged:
0
Best Answer
-
kayman Member Posts: 662 UnicornNot very straightforward to do, but here's an option :
You could try a plain find and replace logic where your stopword list acts as a dictionary. You would have to convert your text field (doc) to data to do so, but you can revert back to doc afterwards so it's not that much of a burden.
Keep in mind however that the find and replace is sensitive to order, so if you have this now :biếtbiết baobiết bao nhiêu
you will have to order it asbiết bao nhiêu
biết bao
biết
To catch them all as otherwise all biết will be replaced and you keep stuck with bao and bao nhiêu and there will be no match.2