Hi,I am using data that can be text or numbers, but contains character conflicts for capital i, lower case l and 1s. How is best to fix this? Is it code stages such as Unclean = Regex.Replace(Clean, "(\b)l([A-Z]+)(\b), "$1I$2$3")? I have not used co...