1. 程式人生 > >去除字串中的html標籤

去除字串中的html標籤

String text = “<p>lahobjojbblj</p>”
        text = text.replaceAll("</?[^>]+>", "");
        text = text.replaceAll("\\s*|\t|\r|\n", "");