I am new to regex.
I am trying to find strings such as (MUSI110532022-3SV1SEM1) in a free text field. The string may appear in any location and it may also be preceded by other text in a bracket.
Is there any regex expression to identify such a string at any location within a field?
I already tried [a-zA-Z]{4}d{5}$ but it didn't work and I think it was because I need to account for the brackets?
Any help very gratefully received.