将 "rich text box1" 的第 5 个单词复制到 "textbox1.text"
Copy 5th word of the "rich text box1" to "textbox1.text"
richtextbox1
包含 8 个单词 "The brown fox jumped over the lazy dog"。单击 button1
时,我想将 richtextbox1
的第 5 个单词复制到 textbox1.text
。
这可以使用 find(character, start integer, end integer)
等查找方法来完成吗?找到 "empty" (space) 字符并读取字符,直到找到第二个 "empty"(space) 字符。或者其他更好的方法?
我建议在这种情况下使用拆分功能。
例如
textbox1.text = richtextbox1.text.split(" ")(4) 'This is for the 5th word.
你也确实会用到Mid功能。从中检查出来
https://msdn.microsoft.com/en-us/library/05e63829(v=vs.90).aspx
已更新
textbox1.text = Mid(richtexbox1.text, 1, 5)
richtextbox1
包含 8 个单词 "The brown fox jumped over the lazy dog"。单击 button1
时,我想将 richtextbox1
的第 5 个单词复制到 textbox1.text
。
这可以使用 find(character, start integer, end integer)
等查找方法来完成吗?找到 "empty" (space) 字符并读取字符,直到找到第二个 "empty"(space) 字符。或者其他更好的方法?
我建议在这种情况下使用拆分功能。 例如
textbox1.text = richtextbox1.text.split(" ")(4) 'This is for the 5th word.
你也确实会用到Mid功能。从中检查出来 https://msdn.microsoft.com/en-us/library/05e63829(v=vs.90).aspx
已更新
textbox1.text = Mid(richtexbox1.text, 1, 5)