String a = jTextField1.getText();
String b = a.replace('x','1');
String c = b;
String array [] = c.split("+");
String one = array[0];
String two = array[1];
String three = array[2];
jLabel3.setText(array[0]);
0
A
回答
4
這是東陽split
接受正則表達式,並+
是一個特殊的characeter,逃避它,你將被罰款。
String array [] = c.split("\\+");
+0
感謝您的朋友對您的積極支持 – user3603028
2
String.split方法使用正則表達式。你需要使用\\
來逃避表達式。
String array [] = c.split("\\+");
或者您可以使用模式類逃脫正則表達式
String array [] = c.split(Pattern.quote("+"));
相關問題
- 1. 登錄錯誤不知道爲什麼
- 2. 爲什麼Django管理員登錄會給我403 CSRF錯誤?
- 3. 爲什麼Google+登錄會導致登錄錯誤?
- 4. G + sdk給登錄錯誤?
- 5. 使用.split()內爲在Python循環給出錯誤
- 6. 爲什麼不使用OAuth登錄Facebook?
- 7. 爲什麼設計給我一個關於登錄這個肯定需要登錄的動作的錯誤?
- 8. 爲什麼我會在python中使用split()方法獲取值錯誤?
- 9. '////'split('/')爲什麼產生[]?
- 10. Raspberry Pi登錄錯誤 - 登錄錯誤
- 11. Java登錄'異常錯誤'是什麼意思?
- 12. ,是什麼原因登錄失敗錯誤?
- 13. 什麼是sonarqube登錄webapi
- 14. 什麼是Android主登錄?
- 15. 爲什麼我沒有收到Spring Security登錄錯誤消息?
- 16. Javascript錯誤..爲什麼登錄表單閃爍一秒?
- 17. 爲什麼調用boost :: split()會給出如此多的警告?
- 18. 爲什麼調用split和splice會給出空數組?
- 19. 什麼是「錯誤」行爲?
- 20. 是什麼給我這個錯誤?
- 21. smack API給登錄錯誤gtalk
- 22. Facebook登錄 - dialog/oauth給出錯誤
- 23. 爲什麼PHP登錄腳本使用GET ID登出?
- 24. 爲什麼$ book給出錯誤,但是$ title和$ author不是?
- 25. 爲什麼程序給出錯誤?
- 26. 爲什麼sopln()給出錯誤?
- 27. 爲什麼jsfiddle給我錯誤「SyntaxError:Unexpected token:」?
- 28. 爲什麼要給我錯誤?
- 29. 爲什麼mysql給我一個錯誤?
- 30. 爲什麼會給出錯誤?
什麼錯誤。你可以附加堆棧跟蹤? – Sunny
什麼是「錯誤」(即,如果運行時錯誤是完整的堆棧跟蹤,或者如果生成時間錯誤,則爲完整的生成錯誤輸出),包括代碼中指向哪個行(如果有的話)? – jordan
使用+ sign .split(「+」)給出錯誤 – user3603028