sourcefield
rt = Regex.Replace(rt,"[\x01-\x1F]", "");
also you can kick-off unnecessary chars from string by regexpDim s As String = Regex.Replace(sb.ToString, "[\xC2]", "")s = Regex.Replace(s, "[\xA0]", "")
Post a Comment
$dllPath = "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\...
1 comment:
also you can kick-off unnecessary chars from string by regexp
Dim s As String = Regex.Replace(sb.ToString, "[\xC2]", "")
s = Regex.Replace(s, "[\xA0]", "")
Post a Comment