热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

用单引号或双引号在Python中提取字符串-ExtractingstringsinPythonineithersingleordoublequotes

IneedhelpwithaPythonregextoextractstringseitherinsidesingleordoublequoted.Ifounda

I need help with a Python regex to extract strings either inside single or double quoted. I found a solution but the regex is in C# here:

我需要Python正则表达式的帮助来提取单引号或双引号内的字符串。我找到了一个解决方案,但正则表达式在C#中:

How to extract the string in the quotes (either double quotes or single quotes)

如何提取引号中的字符串(双引号或单引号)

I need to parse this string

我需要解析这个字符串

tags = { 'one' : "two", "three", 'four' }

and return the array items:

并返回数组项:

one
two
three
four

Currently I have this for single quotes:

目前我有这个单引号:

quoted = re.findall(r"'(.*?)'", buffer, re.DOTALL)      

1 个解决方案

#1


8  

>>> buffer="tags = { 'one' : \"two\", \"three\", 'four' }"
>>> re.findall(r"['\"](.*?)['\"]", buffer)
['one', 'two', 'three', 'four']

推荐阅读
author-avatar
liuleyi
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有