[Solved] How would I write a regular expression that captures A23 but not A 23
[ad_1] sically if there is a space after the capital A, I would to ignore the A and the space and capture everything else. But if there is no space after the A I want to include the A in the capture. You can try this regex in PCRE using match reset \K: \bA(?: \K)?\S+ … Read more