如何使用 MySQL 查詢從 HTML 中提取純文字?

Linda Hamilton
發布: 2024-11-15 03:12:02
原創
977 人瀏覽過

How can I Extract Plain Text from HTML Using MySQL Queries?

Extracting Plain Text from HTML Using MySQL Queries

To remove HTML tags from database records, you can leverage MySQL XML functions instead of employing a PHP script. Here's how:

Query Using ExtractValue() for MySQL >= 5.5

Starting with MySQL version 5.5, the ExtractValue() function allows you to extract text content from within XML elements. By passing the HTML field to ExtractValue() and specifying the XPath expression '//text()', you can retrieve the plain text value:

SELECT ExtractValue(field, '//text()') FROM table;
登入後複製

This query effectively removes all HTML tags from the specified field, returning only the plain text content.

Reference:

  • [MySQL XML Functions Documentation](https://dev.mysql.com/doc/refman/5.5/en/xml-functions.html)

以上是如何使用 MySQL 查詢從 HTML 中提取純文字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板