2012-08-25 148 views

回答

3

使用String#replace

String yourString = "This&aIs&aA&aTest"; 
yourString = yourString.replace("&a", ""); 
1

使用正則表達式用的replaceAll()

str.replaceAll("&a", ""); 
3

使用String.replace

s = s.replace("&a", ""); 

記住,字符串是不可變的。 String.replace實際上並未修改字符串。您需要將結果返回給變量。

看到它聯機工作:ideone

-4

這正是String對象的替換功能是。如果你想獲得一個&出現的所有,使用正則表達式,像這樣:

<html> 
<script> 

a = "This&aIs&aA&aTest" 

alert(a.replace(new RegExp ("&a", "g") , " ")); 

</script> 
</html> 

或的replaceAll()。

+2

OP正在使用Java,而不是Javascript。 – Vulcan

+0

糟糕。這是。第三天在這個網站上。 Sowwy – Technologeeks

+0

你總是可以刪除你的答案並獲得回報:) – Pshemo