How find the line break using a particular Indea

Hi @sunilkanth

so basically you can give the start and the count from where you want the identification to start from so I passed the Index of Balance at and search for new line after that line

str.IndexOf(Environment.newLine,str.IndexOf(“Balance at”,str.IndexOf(“Balance at”) + 1))
You can try like this

Here I passed the start of Balance at to find second balance at and then pass that index to start searching from second balance at to find the New line feed

cheers