本文介绍了从字符串中提取只有最右边的N个字母的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我怎么能提取这是从另一个字符串组成的最右边的六个字母的子?
例如:我的字符串是PER 343573。现在我想只提取343573。
我怎样才能做到这一点?
解决方案
字符串的子串= MyString.Substring(MyString.Length-6);
How can I extract a substring which is composed of the rightmost six letters from another string?
Ex: my string is "PER 343573". Now I want to extract only "343573".
How can I do this?
解决方案
string SubString = MyString.Substring(MyString.Length-6);
这篇关于从字符串中提取只有最右边的N个字母的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!