这是一篇文章
{shangpin name='随机中文名' img='https://su1018.cn/content/templates/Joe/images/suolue.png' money='99' content='随机的内容,还是内容'/}
文章结束了
上面是内容,用正则的方式取出money里的99,也有可能是9.9
我正则有点不行,请帮忙整下
这是一篇文章
{shangpin name='随机中文名' img='https://su1018.cn/content/templates/Joe/images/suolue.png' money='99' content='随机的内容,还是内容'/}
文章结束了
上面是内容,用正则的方式取出money里的99,也有可能是9.9
我正则有点不行,请帮忙整下
试试这个
import re
pattern = re.compile (r'(?:money=)\d+.?\d
*')
pattern.findall(string)