0
我搜查,但沒有說明如何,如果我做一個MsgBox爲此, 例如如何分割字符串或使字符在VB 2010
Dim sentence as String = "cat is an animal"
:
MsgBox(sentence)
它顯示
cat is an animal
如何使一個MsgBox,說
cat
is
an
animal.
我搜查,但沒有說明如何,如果我做一個MsgBox爲此, 例如如何分割字符串或使字符在VB 2010
Dim sentence as String = "cat is an animal"
:
MsgBox(sentence)
它顯示
cat is an animal
如何使一個MsgBox,說
cat
is
an
animal.
簡單的方法用新的線
在字符串中的單詞替換空間= MyString.Replace(" ","\r\n")
拆分將在空間中被分割爲一個數組,然後加入該備份與新線是沒有意義的,除非你需要這個數組來做其他事情。
我不明白。我剛開始使用vb 2010.請給我代碼。 – Ubaada 2012-03-25 12:40:50
我得到了代碼: Dim sentence2 As String =「cat is an animal」 Dim sentence = sentence2.Replace(「」,vbNewLine) MsgBox(句子) – Ubaada 2012-03-25 12:44:04
好吧,你去了,你學到了一些東西。滿足不是嗎?比僅僅給你答案的人多得多。我可以想到你所要問的很多方法,主要是因爲我脫掉了屁股並學會了。 「只要給我代碼」,sheesh – 2012-03-25 17:06:47