Hello,
I'm trying to find only the letter D on its own in a string such as the following: B,G,D,DM,TD,DM,TD,D. In this example, that would be 2 D's (the third D and the last D I've marked in red).
Unfortunately, all the regex expressions I've tried also gets the D within TD (e.g using D,|D$).
Thanks.
Tony