我正在尝试将这个词分开,例如,字符串是ASP_01,因此我想将其分成两个类,例如在一个变量中存储ASP,在另一个变量中将01分开,是否有可能在asp中做到这一点? .net Visual Basic,
我是新手,
感谢您的帮助。
答案 0 :(得分:1)
您需要使用分割功能。 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"