If a table contains the following rows let us say TableA with cola values
Row 1: aaa/bbbb/XXXcccc/dddd
Row 2: xxx/cccc/XXXddddddd/eeee
I want to retreive XXXcccc and XXXddddddd from a table(the common string to start with is XXX and ends with /), should I be using substr, regular expression?
Thanks!!