str = str.Substring (10); // to remove the first 10 characters.
str = str.Remove (0, 10); // to remove the first 10 characters
str = str.Replace ("NT-DOM-NV\\", ""); // to replace the specific text with blank
// to delete anything before \
int i = str.IndexOf('\\');
if (i >= 0) str = str.SubString(i+1);
8条答案
按热度按时间6pp0gazn1#
您可以使用以下代码:
gupuwyp22#
假定“\”始终出现在字符串中
4si2a6ki3#
"asdasdfghj".TrimStart("asd" );
将导致"fghj"
。"qwertyuiop".TrimStart("qwerty");
将导致"uiop"
。"asdasdfghj".CutStart("asd" );
现在将产生"asdfghj"
。"qwertyuiop".CutStart("qwerty");
仍将导致"uiop"
。alen0pnh4#
如果始终只有一个反斜杠,请使用以下命令:
如果可以有多个,而您只想拥有最后一部分,请使用以下命令:
nkcskrwz5#
试试看
xdyibdwo6#
您可以使用以下扩展方法:
在您的情况下,可以按如下方式使用它:
注:不要使用
TrimStart
方法,因为它可能会进一步修剪一个或多个字符(see here)。hsgswve47#
试试here。
ugmeyewa8#