Remove duplicates from a string

let assume i have a string contains “22556644”
i want output like 2564

can u plz tell me how ?

1 Like

Hi @katta_nikhil

Checkout this thread

Regards
Sudharsan

Hi @katta_nikhil
Try this:
BlankProcessc.zip (34.9 KB)

Let me know if that works for you :slight_smile:

Hi @katta_nikhil ,

Maybe you could try the below Expression :

new String("22556644".Distinct().ToArray())

image

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