I get a TSring from a software via get visible text, whose content I need as a datatable.
The problem is that I can’t get the string formatted.
The text is the content of the heading I need for the respective column, but it is not always separated by a special character. The data for the DataTable are separated by spaces, which I tried to separate with a comma using Replace String, but the result was as follows.
How can I manipulate the string so that I can process the data via generate datatbale?
Hi, here is the issue. I have already tried using System.Text.RegularExpressions.Regex.Replace(str_Text, “s\s+/g”, “,”) to remove the spaces and replace the commas, but I am missing the paragraph as a new line.