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
"how to remove rows containing a particular string/word from an excel file?"
Hi i want to delete rows which contains a specific word in excel file and get output without those rows. I am using 5.0.13 version rapid miner. i have started using rapid miner recently. can anyone suggest me how to go about it and what operators to choose?
i have read about "filter examples" operator. now having an excel file in .xls format, what will be the best way to get output without rows containing a particular word? please reply.
i have read about "filter examples" operator. now having an excel file in .xls format, what will be the best way to get output without rows containing a particular word? please reply.
Tagged:
0
Answers
column1 != .*badWord.*
will keep all rows where column1 does not contain the string "badWord".
To match only whole words, your filter should look like this:
column1 != != ^(.+\s)*badWord(\s.*)*$
The cryptic syntax used here are regular expressions Google for that term to get more information.
Best regards,
Marius