If I have text with a dollar sign, it doesn't show properly in Aspose.PDF. Below is a snippet.
string newValue = selectedNode.GetValue("INSP_SUMMARY", 1, 1, 1).Replace("$", "abc");
bottomRows[1].Cells[0].Paragraphs.Add(new Text(newValue));
If newValue is "Jim gave Bill $20 to go to the movies", only "20 to go to the movies" will show up. The dollar sign and everything before that does not show up. I tried using .Replace("$", "$$"), but that didn't work. I even tried "\\$", but that didn't work. I noticed that $D gives the date and $ might be used for other macros. Are there any other special characters that I should be wary of?
Thanks in advance!
This message was posted using Aspose.Live 2 Forum