分割字符串以获取结束字符串 [英] split the string to get end string

查看:123
本文介绍了分割字符串以获取结束字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的字符串是
字符串1 --->字符串2 --->字符串3 --->字符串4 --->字符串5

如何仅获取字符串"string1 ---> string2 ---> string3 ---> string"

My string is
string1--->string2--->string3--->string4--->string5

how to get the string "string1--->string2--->string3--->string" only

推荐答案

Here[^] is a link about string manipulation in C#. By the time you understand the concept, I''m sure you''ll figure out what method to use. Good luck.


在这里问不是一个好问题.您应该了解C#或VB.Net字符串操作.有很多方法可以实现这一目标.

顺便说一句,这是一个
Its not a good question to ask here. You should learn about C# or VB.Net string manipulation. There are many ways to achieve this.

BTW here is one
string str="string1--->string2--->string3--->string4--->string5";
str.Substring(1, str.LastIndexOf(">") - 5);


这篇关于分割字符串以获取结束字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆