How to remove first line of a string

Hi

After OCR scrapping i stored the value in a string. The data is having unstructured header. so i want to remove first line from the string. Suggest your ideas please.

@mani93

Please check below thread to do this.

note = System.Text.RegularExpressions.Regex.Replace(InputText,"^(.*\n){1}","")

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.