I have the following query & PRCE regex from which i want to get table names.
FROM student s, #prefix#.sometable, subject s, marks s WHERE ...
(?<=\sfrom)\s+\K(\w*)(?=\s+where)
Desired result student s
subject s
marks s
I cant figure out how to extract from 1st match.
I'm trying to find & replace in sublime text editor.