Compare text then remove text with rules applied

I need help! and would like to do this basically

A11.111, B22.222, C33.333 compared to A11111

output

B22.222, C33.333

Hi @Jermane_Mack1 - Welcome to the UiPath Community Forum :partying_face:

Just to be clear, is the above text supposed to be “A11.111”?

I have made a sample workflow for your review. You can use a String.Contains to check for one value. I have made an array (comma separated) of strings to check in my sample workflow.
image
Main.xaml (8.3 KB)

Want to learn more, take a look at this very helpful post:

Hopefully this helps.

Cheers

Steve

Hi,

FYI, Another solution:

image

 arrStr = arrStr.Except({"A11.111"}).ToArray()

Regards,