Strange TrimEnd behaviour with \ char

前端 未结 2 1228
有刺的猬
有刺的猬 2020-12-21 22:11

I am using TrimEnd to remove certain characters from the end of a string. Initially I thought this would work:

    Dim strNew As String = \"Employees\\Sickne         


        
相关标签:
2条回答
  • 2020-12-21 22:43

    TrimEnd is removing all the characters you give it, in any order it finds them until it gets to a character that's not in the list.

    So when the \ is not in the list you provide, the trimming stops at the \. Once you include the \, the trim removes the \ and then sees 'ess' on the end of the string - both 'e' and 's' are already in the list you provided, so they get trimmed.

    The Trim methods are completely unsuitable for what you're trying to do. If you're manipulating paths, use the Path.xxx methods. If you're just generally trying to chop up strings into sections use either Split(), or some appropriate combination of Substring() and whatever you need to find the splitting point.

    0 讨论(0)
  • 2020-12-21 22:45

    Re-read the documentation of TrimEnd; you are using it wrong: TrimEnd will remove any char that is in the array from the end of the string, as long as it still finds such chars.

    For example:

    Dim str = "aaebbabab"
    Console.WriteLine(str.TrimEnd(new Char() { "a"c, "b"c })
    

    will output aa since it removes all trailing as and bs.

    If your input looks exactly like in your example, your easiest recurse is to use Substring:

    Console.WriteLine(strNew.Substring(0, strNew.Length - strTrim.Length))
    

    Otherwise you can resort to regular expressions.

    0 讨论(0)
提交回复
热议问题