I need to extract some text from a string, but only where the text matches a string pattern. The string pattern will consist of...
2 numbers, a forward slash and 6 numbers e.g. 12/123456
or
2 numbers, a forward slash, 6 numbers, a hyphen and 2 numbers e.g. 12/123456-12
I know how to use INSTR to find a specific string. Is it possible to find a string that matches a specific pattern?