Hello
VB.NET regex. Please help me to catch and remove the following digit pattern from a text file. Each new line has a single digit, there would be 2 or 3 groups of those digits
0
1
2
0
3
4
3
3
4
Here is my set of regex [\r\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\d\r]
Thank you.