1
A
回答
2
0
它應該爲你的標籤是不VB.net.if上述正則表達式也適用
Dim s2,s,d,g as string
s2 = "George (Babe) Ruth "
s = InStr(1, s2, " (")
d = InStr(1, s2, ") ")
g = s2.Remove(s, d + 1 - s)
0
捎帶上user2526236的答案.. ..
使用VB.net使用此功能 - 傳遞字符串與parens ...
Private Function RemoveChunk(psString As String) As String
Dim iStart As Integer
Dim iStop As Integer
Dim sModifiedString As String
iStart = InStr(psString, "(")
iStop = InStr(psString, ")")
If iStart > 0 And iStop > 0 Then
sModifiedString = psString.Remove(iStart - 1, iStop + 1 - iStart)
Else
'nothing to modify
sModifiedString = psString
End If
Return sModifiedString
End Function
相關問題
- 1. 如何使用Visual Basic從字符串中刪除停止詞?
- 2. 從字符串中刪除括號
- 3. Prolog從字符串中刪除括號
- 4. 如何從iOS中的xml字符串中刪除括號?
- 5. 如何從scala中的字符串中刪除括號?
- 6. 如何從PHP中的字符串中刪除括號?
- 7. 如何從JAVASCRIPT中的字符串中刪除括號?
- 8. 從字符串刪除花括號
- 9. 刪除字符串中的括號
- 10. 如何從Python字符串中刪除括號內的文本?
- 11. 如何使用Ruby從字符串中刪除括號內的所有符號?
- 12. 如何從輸出中刪除括號?
- 13. 如何從結果字符串中刪除括號?
- 14. 從str.replace中的字符串中刪除括號使用str.replace
- 15. 如何使用NSRegularExpression刪除字符串中的括號?
- 16. 從用戶輸入的字符串中刪除UTF-8
- 17. C++如何從字符串中刪除字符(輸入)
- 18. 如何使用用戶輸入從Ruby中的文件中刪除字符串?
- 19. 刪除括號內的字符串[iOS]
- 20. C#刪除字符串的括號
- 21. 的Ruby/Rails - 從字符串中刪除括號內的文字
- 22. 在字符串值中輸入括號
- 23. 在Visual Basic 6中,如何刪除字符串的第一個字符?
- 24. 使用括號中的字符串刪除括號中的所有數字
- 25. Python從數組中刪除括號和字符串引號
- 26. 從PHP輸入字符串中刪除特定的字符串
- 27. 使用tcl從字符串中刪除方括號
- 28. 從Java中的字符串中刪除方括號
- 29. 如何刪除json合成字符串中的方括號?
- 30. 如何刪除字符串中不需要的括號?
MyString.Replace(「Babe」,「」) –
看看'string.replace'函數和'String.IndexOf' – Plutonix
您是否想要刪除文本中的文本呢? – Pepe