gpt4 book ai didi

python-3.x - 如何使用python3中的搜索从主字符串的空格前后获取子字符串?

转载 作者:行者123 更新时间:2023-12-04 01:18:42 24 4
gpt4 key购买 nike

下面的例子,

import re

OUTPUT = '''
This is sample KLC-SOME345-Sample-VR demo test
'''

search = re.search('( .*Sample-VR)', OUTPUT, re.IGNORECASE)
if search != None:
print(search.group(1))

结果如“KLC-SOME345-Sample-VR

请帮助我如何获得准确的字符串。我也试过\s 和 ' ' 但没有用

最佳答案

import re

OUTPUT = '''This is sample KLC-SOME345-Sample-VR demo test'''

search = re.search(r'([^\s]*Sample-VR[^\s]*)', OUTPUT, re.IGNORECASE)
if search != None:
print(search.group(1))

打印:

KLC-SOME345-Sample-VR

关于python-3.x - 如何使用python3中的搜索从主字符串的空格前后获取子字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62931139/

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