博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
换行符 html java_java 去html标签,去除字符串中的空格,回车,换行符,制表符
阅读量:6503 次
发布时间:2019-06-24

本文共 637 字,大约阅读时间需要 2 分钟。

public static String getonerow(String allLine,String myfind)

{

Pattern pattern = Pattern.compile("

.*?
");

Matcher  matcher = pattern.matcher(allLine);

while(matcher.find()) {

String  myval = matcher.group();

int npos=myval.indexOf(myfind);

if(npos>=0)

{

npos = myval.indexOf("");

if(npos>0)

{

String content = myval.substring(npos,myval.length());

content=content.replaceAll("?[^>]+>","");   //剔出了的标签

content=content.replace(" ","");

content=content.replace(".","");

content=content.replace("\"","‘");

content=content.replace("‘","‘");

content=content.replaceAll("\\s*|\t|\r|\n","");//去除字符串中的空格,回车,换行符,制表符

return content;

}

}

}

return "";

}

转载地址:http://iqlyo.baihongyu.com/

你可能感兴趣的文章
R 学习笔记《十》 R语言初学者指南--图形工具
查看>>
PHP通过读取DOM抓取信息
查看>>
DICOM医学图像处理:DICOM网络传输
查看>>
nio和传统Io的区别
查看>>
移动端网页布局中需要注意事项以及解决方法总结
查看>>
(原创)Linux下查看系统版本号信息的方法
查看>>
oracle
查看>>
我也要谈谈大型网站架构之系列(2)——纵观历史演变(下)
查看>>
大话设计模式(Golang) 二、策略模式
查看>>
使用PostgreSQL 9.6 架设mediawiki服务器
查看>>
数据库服务器硬件对性能的影响
查看>>
LVM
查看>>
windows+群辉服务器环境下,搭建git版本管理
查看>>
php 几个比较实用的函数
查看>>
(译)OpenGL ES2.0 – Iphone开发指引
查看>>
@RestController 与 @RequestMapping
查看>>
黑马程序员.bobo.DAY.1
查看>>
Unity shader 官网文档全方位学习(二)
查看>>
pbrun
查看>>
浏览器加载和渲染网页顺序
查看>>