Hi, Anyone can help me into this. I like to do extraction of notepad activity for a certain part of text . I Just split each and every line to get the specific text of line using spilt(" ",Environment.newline).After that i need to extract the particular line using index.
It would be better if you can share the content which you want to split and extract.
Then we can either use Regex expression or Split function to achieve this.
In the first split it will split the entire string based on the tag,“Price” (Make sure only one “price” is there in the entire text, else you can choose another string)…and you will get the string before to price. Then you can split with “Inv:” and we are getting the data after that string.