MS SQL RegEx finding 6 numbers exactly – SEO
I am trying to search a MS SQL database column for 6 numbers. The data in the column is a string of characters example: ab01234555cd0122abc987654efg Using RegEx : [0-9]{6} Results are : 012345 and 987654 Here is my current MS…