I have thousands of lines of string type data, and what I need is to extract the string after AS
. For example this line:
CASE END AS NoHearing,
What I want would be NoHearing,
This line:
CASE 19083812 END AS NoRequset
What I need would be NoRequset
So far I have tried couple ways of doing it but no success. Can't use .split
because AS
is not Char
type.