迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > Python >

在 Python 中从字符串中删除 xa0 的方法

作者:迹忆客 最近更新:2023/03/23 浏览次数:

本文介绍了在 Python 中从字符串中删除 \xa0 的不同方法。

\xa0 Unicode 代表程序中的硬空间或不间断空间。它表示为  在 HTML 中。

可以帮助从字符串中删除 \xa0 的 Python 函数如下。

  • unicodedatanormalize() 函数
  • 字符串的 replace() 函数
  • BeautifulSoup 库的 get_text() 函数将 strip’ 设为 True

使用 Unicodedata 的 Normalize() 函数从 Python 中的字符串中删除 \xa0

你可以使用 unicodedata 标准库的 unicodedata normalize() 函数从字符串中删除 \xa0

normalize() 函数使用如下。

unicodedata.normalize("NFKD", string_to_normalize)

这里,NFKD 表示 normal form KD。它将所有兼容字符替换为其等效字符。

下面的示例程序说明了这一点。

import unicodedata

str_hard_space='17\xa0kg on 23rd\xa0June 2021'
print (str_hard_space)
xa=u'\xa0'

if xa in str_hard_space:
    print("xa0 is Found!")
else:
    print("xa0 is not Found!")


new_str = unicodedata.normalize("NFKD", str_hard_space)
print (new_str)
if xa in new_str:
    print("xa0 is Found!")
else:
    print("xa0 is not Found!")

输出:

17 kg on 23rd June 2021
xa0 is Found!
17 kg on 23rd June 2021
xa0 is not Found!

使用字符串的 replace() 函数从 Python 中的字符串中删除 \xa0

你可以使用字符串的 replace() 函数从字符串中删除 \xa0

replace() 函数的用法如下。

str_hard_space.replace(u'\xa0', u' ')

下面的例子说明了这一点。

str_hard_space='16\xa0kg on 24th\xa0June 2021'
print (str_hard_space)
xa=u'\xa0'

if xa in str_hard_space:
    print("xa0 Found!")
else:
    print("xa0 not Found!")

new_str = str_hard_space.replace(u'\xa0', u' ')
print (new_str)
if xa in new_str:
    print("xa0 Found!")
else:
    print("xa0 not Found!")

输出:

16 kg on 24th June 2021
xa0 Found!
16 kg on 24th June 2021
xa0 not Found!

使用 BeautifulSoup 库的 get_text() 函数将 strip 设为 True 从 Python 中的字符串中删除 \xa0

你可以使用 BeautifulSoup 标准库的 get_text() 函数和 strip 启用为 True 从字符串中删除 \xa0

get_text() 函数的用法如下。

clean_html = BeautifulSoup(input_html, "lxml").get_text(strip=True)

下面的例子说明了这一点。

from bs4 import BeautifulSoup
html = 'This is a test message, Hello This is a test message, Hello\xa0here'
print (html)

clean_text = BeautifulSoup(html, "lxml").get_text(strip=True)

print(clean_text)

输出:

Hello, This is a test message, Welcome to this website!
Hello, This is a test message, Welcome to this website!

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Django 中的 Slug

发布时间:2023/05/04 浏览次数:173 分类:Python

本篇文章旨在定义一个 slug 以及我们如何使用 slug 字段在 Python 中使用 Django 获得独特的帖子。

Django ALLOWED_HOSTS 介绍

发布时间:2023/05/04 浏览次数:181 分类:Python

本文展示了如何创建您的 Django 网站,为公开发布做好准备,如何设置 ALLOWED_HOSTS 以及如何在使用 Django 进行 Web 部署期间修复预期的主要问题。

Django 中的 Select_related 方法

发布时间:2023/05/04 浏览次数:129 分类:Python

本文介绍了什么是查询集,如何处理这些查询以及我们如何利用 select_related() 方法来过滤 Django 中相关模型的查询。

在 Django 中上传媒体文件

发布时间:2023/05/04 浏览次数:198 分类:Python

在本文中,我们简要介绍了媒体文件以及如何在 Django 项目中操作媒体文件。

Django 返回 JSON

发布时间:2023/05/04 浏览次数:106 分类:Python

在与我们的讨论中,我们简要介绍了 JSON 格式,并讨论了如何借助 Django 中的 JsonResponse 类将数据返回为 JSON 格式。

在 Django 中创建对象

发布时间:2023/05/04 浏览次数:59 分类:Python

本文的目的是解释什么是模型以及如何使用 create() 方法创建对象,并了解如何在 Django 中使用 save() 方法。

在 Django 中为多项选择创建字段

发布时间:2023/05/04 浏览次数:75 分类:Python

在本文中,我们将着眼于为多项选择创建一个字段,并向您展示如何允许用户在 Django 中进行多项选择。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便