我已經創建了下面的字符串。創建一個串聯的字符串
The <a target="" href="http://google.com/search=xyz">xyz</a><a target="" href="http://google.com/search=xyz"><img src="http://google.com/small.gif" alt="" title="smallimage" border="0"></a> has all the search info.
我正在嘗試如下操作。
String X = "The <a target="" href="http://google.com/search=xyz">xyz</a><a target="" href="http://google.com/search=xyz"><img src="http://google.com/small.gif" alt="" title="smallimage" border="0"></a> has all the search info."
但它是扔我語法錯誤。
這裏我創建了另一個名爲searchTerm的String,如下所示。
String searchTerm = "Hello";
我想通過如下所示的串聯來創建最終的字符串。
String X = "The <a target="" href="http://google.com/search="+searchTerm+"">xyz</a><a target="" href="http://google.com/search="+searchTerm+""><img src="http://google.com/small.gif" alt="" title="smallimage" border="0"></a> has all the search info."
甚至這是行不通的。
請讓我知道我該如何解決這個問題。
在這裏,我甚至感到困惑<and>
標籤,不僅是引號
感謝
你想讀取一些html或將它用於其他目的 –
使用'String.format()'更好,更易讀。 –