gpt4 book ai didi

python - bash脚本替换html中的空格

转载 作者:太空宇宙 更新时间:2023-11-04 09:02:46 26 4
gpt4 key购买 nike

我需要一个可以替换 name="this is a test"中的空格的 linux bash 脚本。

例子:

<input name="this is a test" id="testing 1 2 3" />

会变成这样:

<input name="thisisatest" id="testing 1 2 3" />

编辑:脚本必须能够匹配双引号之间的任何内容。可能是这样的:

<input name="THIS STRING WILL VARY" id="testing 1 2 3" />

有什么想法吗?

最佳答案

使用 Python - 获取一个 HTML 文件,并从 input 标签中删除空格,这些标签的 name 属性等于 this is a test ,你可以使用:

from bs4 import BeautifulSoup

with open('input') as fin, open('output', 'w') as fout:
soup = BeautifulSoup(fin.read())
for tag in soup.find_all('input', {'name': 'this is a test'}):
tag['name'] = tag['name'].replace(' ', '')
fout.write(str(soup))

回应:

I forgot to say that the string "this is a test" can be anything

您可以过滤掉所有具有 name 属性的 input 标签并应用您想要的任何逻辑 - 下面将从任何 name 属性中删除空格:

for tag in soup.find_all('input', {'name': True}):
tag['name'] = tag['name'].replace(' ', '')

关于python - bash脚本替换html中的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17763241/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com