Extract Fixed Pattern String

image

I want to Extract This CODE which is Made of THREE Letters and Three Digits.
The text before and after can vary.

How to extract it in Studio please advice.

Best Regards
H.Noka

Hi @Hurmet_Noka

Try with the Below expression.

[A-Z]{3}\d{3}

Regards

1 Like

System.Text.RegularExpressions.Regex.Match(CurrentRow.Item(“BESCHREIBUNG”).ToString, “[A-Z]{3}\d{3}”).ToString
SOLVED THE PROBLEM

THANK YOU SO MUCH SIR

@Hurmet_Noka

Happy automation!

Regards
Calvin

1 Like

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