list of Strings to be removed from a specific column

I am trying to eliminate all the Titles such as Dr, Mr, HR, Prof, FRCS, etc., from a specific column containing names.

I currently use one string manipulation(regexreplace to be specific)node for a single title. But I want to know if its possible to remove all the titles at once from the column data.

Thank you

Hi @gopal1 , and welcome to the Knime Community.

If you want to replace a single one, you don’t need to use regexreplace, you can just use replace.

However, you can replace all of them using regexreplace, but just adding them to your expression as OR. So you’d be looking for "Dr ", or "Mr ", or "HR ", etc and replace them with nothing.

You can also use replace(), you just need to do multiple replace, for example:
replace(replace(replace($your_column$, "Dr ", ""), "Mr ", ""), "HR ", "")

or in a more readable way:

replace(replace(replace($your_column$
  , "Dr ", "")
  , "Mr ", "")
  , "HR ", "")

Can you share what you have done so far?

6 Likes

Hello @gopal1,

did a workflow some time ago which removes list of words from multiple columns. Maybe you can use it. Here it is:

Welcome to KNIME Community!

Br,
Ivan

1 Like

Your current regex solution also support OR Criteria “|”
br

1 Like

Hi @bruno29a ,

Thank you so much for your inputs.

I am getting an error as attached, if I try using OR . I might be using wrong syntax.

Note : I have used all combination using OR in the string manipulation and ended up with the error.

Thank you

Hi @gopal1 , try like this instead:
regexReplace($LAST NAME$, "Dr|MR|MD", "")

EDIT: You probably want to remove any space that’s between these and the name.
For example, you may have “DrSmith”. If you remove “Dr”, you will end up with “Smith”. Similarly for “MD” which is usually at the end, it will leave you with a space at the end. You can use the strip() function which strips whitespaces at the beginning and at the end. Just add it to the function altogether:
strip(regexReplace($LAST NAME$, "Dr|MR|MD", ""))

Test results:
image

Config:

2 Likes

Thank you so much Ivan.

I have a set of ~ 230 titles to be removed from the Column and I couldn’t get it right as the titles are not getting removed .

I might be wrong.

Do you have any other option to remove all set of titles at one go ?

Thank you,
Sriram

Hi @gopal1 , in my last post, I answered the latest question that you had, which is where you were trying to do a regexReplace with OR, and I corrected that expression.

However, after re-reading the thread (it’s been a while since you asked your original question), your expression will not do exactly what my original suggestion does. Notice that in my search string, I’m looking for "Dr<space>", "Mr<space>" and "HR<space>", while your most recent expression is not including that space.

In the case of “Dr Drew”, my expression will return “Drew”, which is the result you want, while your expression will return “<space>ew”. Your expression will also remove these from the name.

Since the search is case-sensitive, this is more of an issue with Capitalized strings such as Dr, Mr, Prof, etc., but for uppercase titles such as HR, MR, DR, it should not be an issue, unless the last name is also in uppercase.

You can add a space with your search string, although you need to know if the title is a prefix or a suffix (I think MD is usually a suffix, that is it comes after the name).

For prefix titles, you want to search for “title<space>” and for suffix titles, you want to search for “<space>title”:
Mr: "Mr "
MD: " MD"

I’ve put something together where you can add your 250 titles in a table, and the workflow will replace them in 1 shot.

Workflow looks like this:
image

Sample title list (that’s where you would add your 250 titles):
image

Results:
image

You can see that Dr Drew MD came out as Drew

Here’s the workflow: List of strings to be removed from a specific column.knwf (14.7 KB)

4 Likes

HI @bruno29a ,

Thank you so much.

This worked :slight_smile:

2 Likes

No problem @gopal1 .

FYI, you should mark the post containing the solution as Solution, not the post where you are acknowledging that the solution works :slight_smile:

2 Likes

Helllo @gopal1,

in general it’s always recommended to share input data set and expected outcome. (If data is confidential then you can use dummy data as it obviously doesn’t matter.) That way is usually fastest and less painful as we don’t have to guess your data set, expected outcome and logic behind it. Although you found a solution might be useful to know for next time :wink:

Br,
Ivan

2 Likes

I assume there is an internal ticket for this regarding the forum improvements :laughing:

1 Like

Don’t think there is but not a bad idea :wink:
Ivan

1 Like

Sure I will do that . Thanks

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.