Hi All,
could you help to provide regex to identify strings as below,
The strings : CD123, C123, D123
Thank you.
Hi All,
could you help to provide regex to identify strings as below,
The strings : CD123, C123, D123
Thank you.

[A-Z0-9 ,]+

Input: "CD123, C123, D123"
Output: System.Text.RegularExpressions.Regex.Match(Input,"(CD\d+|C\d+|D\d+)").Value
Hope it helps!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.