In my application requirement are to replace text with line break. Mine code is
pageText = pageText.Replace("<td style=\"width:23.0769230769231%;\">", "<br>");
Here width value is dynamic which is different for different pdf pages. How to replace this whole string with line break by using string.Replace or using Regex ?