我正在通过为每个标签赋予唯一的名称(具有不同的编号)来修改大型html文件中的html标签。这样,JavaScript函数就可以使用修改后的名称引用这些标记。我想使用类似replace的python函数来做到这一点。
所以我有一个字符串,其中有一个变量button_number_count。
我的意思的例子:
button_number_count = 1;
htmlString = "<img class=\"hiddenCopy\" onclick=\"copyCodeButton("+str(button_number_count)+")\"src=\"../img/Log in.png\"/>";
但是我想在一个更大的字符串上执行替换功能,在该字符串中我替换某个文本字段,同时我在增加数字。
我想要的例子:
content_with_replace = content_with_replace.replace_while_Incr('</pre></code>','</pre></code>'+"<img... %d ...>", button_number_count, number_of_replaces );
显然,这不是确切的语法,但具有可以在每次迭代中以%d
之类的指定模式更改内部变量的功能。
你们知道任何这样的功能或技术吗?任何帮助将不胜感激。
答案 0 :(得分:2)
如果使用re.sub()
进行替换,则可以将函数作为第二个参数而不是纯字符串传递。该函数将根据正则表达式匹配的内容接收一个match
对象。然后,您可以使用诸如itertools.count()
(或您自己的对象)之类的思维来产生越来越多的数字。
例如:
import re
from itertools import count
button_number_count = 1;
htmlString = "this is sometext with more sometext and yet another sometext"
counter = count(button_number_count)
// replace sometext with sometext1, sometext2...
new_string = re.sub(r'sometext', lambda x: x.group(0) + str(next(counter)), htmlString )
new_string如下所示:
'this is sometext1 with more sometext2 and yet another sometext3'