I've got the command below:
> "D:\abc\abcName".TrimStart("D:\abc")
Name
In fact I wish this to trim exactly "D:\abc" and return only "abcName" but seems that the 2nd "abc" is trimmed off as well.
Why does this happen and how can I fix it?
I'm using PS 4.0.
The argument to
TrimStart()
is treated as an array ofchar
s, not a literal string. All consecutive characters at the start of the string that match any of the characters inside the argument "D:\abc" is removed.You could use the
-replace
operator instead, which takes a regex pattern as its right-hand argument:If you are unsure which characters to escape (such as
\
), let the[regex]
class do it for you: