gpt4 book ai didi

python - 如何在python中将字符串转换为正则表达式?

转载 作者:行者123 更新时间:2023-12-04 14:31:39 26 4
gpt4 key购买 nike

关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。












想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。

8 年前关闭。




Improve this question




我从 python 脚本中的命令行参数中获取了一些字符串,并希望将这些字符串用作正则表达式。怎么做?

最佳答案

此代码段应该可以帮助您了解要执行的操作。 (Python 2.7.5)

>>> import re
>>> user_string = raw_input('please enter a string to convert to regex: ')
please enter a string to convert to regex: ab(c)
>>> regex = re.compile(user_string)
>>> regex.match('abc').groups()
('c',)

基本上,你从 raw_input 获取输入然后 re.compile将其转换为正则表达式,然后您可以随意使用它。

注意:对于 Python 3+ 只需切换 raw_inputinput

关于python - 如何在python中将字符串转换为正则表达式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19977108/

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