-1
A
回答
1
你可以使用正則表達式,如:
String str = "(aeiou 123) word one";
str = str.replaceAll("\\([^\\)]*\\)", "").trim();
0
public class ParanthesisRemoval {
public static void main(String args[])
{
String test="ab(xy)cd(zw)ef";
boolean modified = true;
while(modified)
{
modified = false;
int indexOpenParanthesis = test.indexOf("(");
int indexClosedParanthesis = test.indexOf(")");
if(indexOpenParanthesis!=-1 && indexClosedParanthesis!=-1 && indexOpenParanthesis<indexClosedParanthesis)
{
int stringLength = test.length();
test = test.substring(0, indexOpenParanthesis)+test.substring(indexClosedParanthesis+1, stringLength);
modified=true;
}
}
System.out.println(test);
}
}
請注意,這不是嵌套parantesis工作 - (()),或paranthesis沒有正確配對(()
相關問題
- 1. 刪除字符串(字母+下劃線)在括號內的PHP
- 2. R刪除字符串中的非字母數字符號
- 3. 刪除括號外的字符
- 4. 刪除括號內的字符串[iOS]
- 5. C#刪除字符串的括號
- 6. 刪除字符串中的括號
- 7. 刪除字符串中與數字和字母不同的所有符號
- 8. 使用括號中的字符串刪除括號中的所有數字
- 9. 刪除混合的字母和數字字符串
- 10. 如何刪除我的字符串中的額外逗號?
- 11. 在shell腳本中刪除字符串中的額外字符
- 12. 如何從我的字符串中刪除此額外字符?
- 13. 刪除字符串中的字母
- 14. 刪除字母之前的字符串
- 15. 從字符串刪除花括號
- 16. 從字符串中刪除括號
- 17. Prolog從字符串中刪除括號
- 18. 從Excel中刪除字符串中的額外逗號VBA
- 19. Python從數組中刪除括號和字符串引號
- 20. 刪除所有字母和逗號從字符串
- 21. R:刪除字母數字字符串末尾的零字
- 22. 的Ruby/Rails - 從字符串中刪除括號內的文字
- 23. 從括號,括號和連字符的字符串中獲取子字符串
- 24. 從字符串中刪除非字母數字字符
- 25. 刪除空格以外的所有字母數字字符?
- 26. 如何刪除額外字符JSON字符串
- 27. 從Ruby字符串中刪除除字母和數字之外的所有字符
- 28. 如何刪除額外{大括號在json字符串中快速
- 29. 刪除除字母數字和空格外的所有字符使用javascript
- 30. 替換/刪除Bash字符串中的文字方括號
發佈您的嘗試.. –
@Raj提供的信息很少,範圍沒有定義 –
@Raj:請提供您嘗試的示例代碼,但看起來像一個非常簡單的問題。 – Dish