Thanks for any help!
Solved
I am trying to remove duplicates within an attribute that vary per cell. For example in the column (ukHabpCode) I have uu1bu1b5 which separated would be u,u1b,u1b5, but I want to remove the duplicates so I am just let with u1b5 (see figure below).
Best answer by ebygomm
So you could use a stringsearcher to get the alternate letter number combination at the end of the string
[A-Za-z]\d[A-Za-z]\d$So this would give you u1b5, r1a6, g1a6 etc.
But how do you want the other cases handled?
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

