I need a regular expression that finds T1 in a string. I don't want it to match however if there is any text in front of it (spaces are ok), so:
this is T1 - match
this isT1 - not a match
T1 - match
^(?=.*[T])(?=.*[0-4])
this is what i have currently that can match T1 up to T4.