gpt4 book ai didi

python - 返回第一个逗号之前的所有文本

转载 作者:行者123 更新时间:2023-12-01 04:59:41 26 4
gpt4 key购买 nike

我想使用正则表达式返回第一个逗号之前的所有文本以及第一个逗号之后的所有文本。

我想要以下内容:

KB= (j V t) ^ (p V q) ^ (~p V t)
Truth = j=T,t=F,p=F,q=T

这是我到目前为止所拥有的:

line ='(j V t) ^ (p V q) ^ (~p V t),j=T,t=F,p=F,q=T'
KB = re.findall(r',\((.*?)\)',line)
Truth = re.findall(r',[\w=w]+', line)

最佳答案

使用捕获组捕获第一个逗号之前的字符串以及第一个逗号之后的字符串。

>>> import re
>>> line ='(j V t) ^ (p V q) ^ (~p V t),j=T,t=F,p=F,q=T'
>>> re.findall(r'^([^,]*),(.*)$', line)
[('(j V t) ^ (p V q) ^ (~p V t)', 'j=T,t=F,p=F,q=T')]
>>> KB = re.findall(r'^[^,]*', line)[0]
>>> Truth = re.findall(r'^[^,]*,(.*)', line)[0]
>>> print KB
(j V t) ^ (p V q) ^ (~p V t)
>>> print Truth
j=T,t=F,p=F,q=T

您也可以使用re.search功能,

>>> line ='(j V t) ^ (p V q) ^ (~p V t),j=T,t=F,p=F,q=T'
>>> KB = re.search(r'^([^,]*),(.*)$', line).group(1)
>>> Truth = re.search(r'^([^,]*),(.*)$', line).group(2)
>>> print KB
(j V t) ^ (p V q) ^ (~p V t)
>>> print Truth
j=T,t=F,p=F,q=T

关于python - 返回第一个逗号之前的所有文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26552177/

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