欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

处理HTML文本时常用的三个函数_html/css_WEB-ITnose

程序员文章站 2022-05-07 12:37:37
...
今天和朋友谈到对前端工程师加强正则训练的事情。于是分享三个在HTML文本过滤的时候最常用到的函数,这些函数都采用正则进行处理。
/* * 去掉HTML标签 */function stripHTML(oldString) {    return oldString.replace(/]+>/gi, "");}/* * 去掉
*/function stripBR(oldString) { return oldString.replace(//gi, "");}/* * 去掉全角空格和半角空格 */function stripSpace(string) { var tempstr; tempstr = string.replace(/(^\s+)|(\s+$)/g, ""); tempstr = tempstr.replace(/(^ +)|( +$)/g, ""); return tempstr;}