


上篇文章给大家介绍了《PHP中我们如何自定义匹配手机号的正则表达式?(附代码)》,本文继续给大家介绍如何使用正则替换的方式实现清除字符串中所有的HTML标签?(详细介绍)
如何编写一个函数,使用正则替换的方式能够实现清除字符串中所有的HTML标签?
如果我们想要去清楚字符串HTML的标签去要把HTML的标签全部列出来,首先我们先把字符串定义下来,总的来说我们HTML的标签主要有两种情况,一种是双标签以什么开始,以什么结束,另外一种就是单标签(或者是input)结束,一般情况下,我们不会把这个标签给删掉,比如说写一个(input)标签的文本域,如果我们把标签删掉了,文本域就没了,因此我们不会直接这样做,我们会把相对应的标签转化为实体,假如,我们直接输出(echo)$str;我们运行结果,空白栏外是front标签,里面是普通的文本域,(代码结果如下所示)
<?php /**** ***清楚字符串HTML标签* *******/ $str ='<font>高考加油</font><input type="text"/>'; echo $str; ?>
代码结果如下所示
以上这种情况,如果我们要是清除,是不行的,因此,我们会对上述代码进行替换,首先,我们先定义一个函数,function demo(),给到一个字符串,紧接着我们定义正则,$pattern,然后我们需要使用到两个符号,第一(/),第二个是(/>/S),当我们找到之后,我们进行替换,$replace,一个是(<)另一个是(>),最后我们直接(return)他们的结果。输出(echo)demo($str),最后我们得到的结果就是原样输出,
代码如下:
<?php /**** ***清楚字符串HTML标签* *******/ $str ='<font>高考加油</font><input type="text"/>'; echo $str; function demo($str){ //定义正则 $pattern = array( '/</S', '/>/S' ); $replace = array('<','>' ); return preg_replace($pattern, $replace, $str); } echo '<hr/>' ; echo demo($str); ?>
代码结果如下所示;
其实一样,我不使用这个函数,系统中也有其他的函数帮我们实现;
例如:
(htmlentities)---将字符串转换为HTML转义字符。
(htmlspecialchars)---特殊字符转换为HTML实体。
现在我们用(htmlspecialchars)
函数进行编码,然后进行代码演示:
代码如下:
<?php /**** ***清楚字符串HTML标签* *******/ $str ='<font>高考加油</font><input type="text"/>'; echo $str . '<hr/>'; echo htmlspecialchars($str); function demo($str){ //定义正则 $pattern = array( '/</S', '/>/S' ); $replace = array('<','>' ); return preg_replace($pattern, $replace, $str); } echo '<hr/>' ; echo demo($str); ?>
代码结果如下所示;
从上述代码演示结果看出,我们所得到的结果是一样的,这就是我们所实现的替换,然而对于我们今天讨论的清除,道理是一样的,我们还是定义一个正则表达式,
我们以代码为例:
<?php /**** ***清楚字符串HTML标签* *******/ $str ='<font>高考加油</font><input type="text"/>'; echo $str . '<hr/>'; echo htmlspecialchars($str); function demo($str){ //定义正则 $pattern = array( '/</S', '/>/S' ); $replace = array('<','>' ); return preg_replace($pattern, $replace, $str); } echo '<hr/>' ; echo demo($str); echo '<hr/>'; $str ='<font color="" >高考加油</font>'; $pattern = '/<.*?>(.*?)<\/.*?>/S'; echo preg_replace($pattern,'\1',$str); ?>
代码结果如下所示;
通过上述代码我们可以清楚地看到,标签已经清除了,只剩下内容了;
推荐学习:《PHP视频教程》
The above is the detailed content of How to use regular replacement to clear all HTML tags in a string?. For more information, please follow other related articles on the PHP Chinese website!

PHP正则表达式是一种针对文本处理和转换的有力工具。它可以通过解析文本内容,并按照特定的模式进行替换或截取,达到有效管理文本信息的目的。其中,正则表达式的一个常见应用是替换以特定字符开头的字符串,对此,我们进行如下的讲解

Golang正则表达式使用管道符|来匹配多个单词或字符串,将各个选项作为逻辑OR表达式分隔开来。例如:匹配"fox"或"dog":fox|dog匹配"quick"、"brown"或"lazy":(quick|brown|lazy)匹配"Go"、"Python"或"Java":Go|Python|Java匹配单词或4位邮政编码:([a-zA

总结了一些web前端面试(笔试)题分享给大家,本篇文章就先给大家分享HTML部分的笔试题(附答案),大家可以自己做做,看看能答对几个!

php用正则去除中文的方法:1、创建一个php示例文件;2、定义一个含有中文和英文的字符串;3、通过“preg_replace('/([\x80-\xff]*)/i','',$a);”正则方法去除查询结果中的中文字符即可。

在本文中,我们将学习如何使用PHP正则表达式删除HTML标签,并从HTML字符串中提取纯文本内容。 为了演示如何去掉HTML标记,让我们首先定义一个包含HTML标签的字符串。

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

在html中,document是文档对象的意思,代表浏览器窗口的文档;document对象是window对象的子对象,所以可通过“window.document”属性对其进行访问,每个载入浏览器的HTML文档都会成为Document对象。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
