I want to extract a specific line which contains some text for example,
I have one text file, which contains more than 50 lines, but I want to extract which contains a specific word
“Control #: 394839009348354 other process requirements for analysis”
based on keyword “control #:” want to extract that whole specific line
@gokulvasant you can give like this say the entire string is stored in a variable say outtext.now to get that use like this outtext.substring(outtext.indexof(“Control#:”)+“Control#:”.length).split(environment.newline.tochararray)(0). this is will give you the required output.