用字分割字符 [英] Split character in word

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

问题描述

我正在尝试将这个词分开,例如,字符串是ASP_01,因此我想将其分成两个类,例如将ASP存储在一个变量中,将01存储在另一个变量中,是否可以在asp中做到这一点?.net Visual Basic,

I am trying to separate this word, as an example the String is ASP_01, so I want to separate it into two like store ASP in one variable and the 01 in another variable, is it possible for me to do this in asp.net visual basic,

我是新手,

感谢您的帮助.

推荐答案

您需要使用Split Function.链接

You need to use the Split Function. Link

dim str As String = 'ASP_01'
dim newWord As String = str.Split(new Char {"_"c})

dim 1stWord As String = newWord[0] //result is "ASP"
dim 2ndWord as String = newWord[1] //result is "01"

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

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