if I have a string "2A3" and I need to extract all combinations of digit followed by letter AND letter followed by digit
so this should return 2A and A3
i tried \d[A-Z]|[A-Z]\d but it returns only 1 combination How to fix this ?
if I have a string "2A3" and I need to extract all combinations of digit followed by letter AND letter followed by digit
so this should return 2A and A3
i tried \d[A-Z]|[A-Z]\d but it returns only 1 combination How to fix this ?
Copyright © 2021 Jogjafile Inc.