gpt4 book ai didi

python - 如何获取 Python 正则表达式搜索找到匹配项的偏移量?

转载 作者:太空宇宙 更新时间:2023-11-03 15:20:28 25 4
gpt4 key购买 nike

我正在尝试获取使用 re.search() 找到的匹配项的偏移量。

http://docs.python.org/dev/howto/regex.html

该站点解释了如何获取匹配组件相对于匹配开始的偏移量,但没有说明如何获取匹配本身在“haystack”字符串中的偏移量。

最佳答案

>>> import re
>>> s = 'Hello, this is a string'
>>> m = re.search(',\s[a-z]',s)
>>> m.group()
', t'
>>> m.start()
5

可以找到更多信息 here .

关于python - 如何获取 Python 正则表达式搜索找到匹配项的偏移量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15856983/

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