Hi everyone, I'm having a problem where in an XML file, if the words in it contain a colon at the end, my translator application does not recognize it and does not find the translated word in a database. The XML file has thousands of words, therefore I cannot simply edit the XML file. In the database for example, there is a word Called Log: There is an equivelent translated for Called Log but not Called Log: <-- with a colon, so the program does not translate the word since it has a colon
foreach
{
translationsFound.Add(row.Cells[
}
row.Cells[
That is part of the code which searches the Database for a equivalent word it works flawlessly for words without colons at the end. How would I construct a check to ignore if there is a colon at the end?