從RSS獲取一些數據後,在android設備上顯示,
這些字符串有些在開始有括號,括號中有一些標示符:
This is a title of something...
[Brochures] This is a brochure title
[Thought Leadership] This is something else
我想把這些括號中的內容都移除,然後再顯示在屏幕上。但是不知道應該怎麼實現,我想可能用到正則表達式,請高手賜教,謝謝。
System.out.println("[Brochures] This is a brochure title".replaceAll("\\[.*?\\]", ""));
一試便知!