'return'后双引号之间的所有字符都需要Python正则表达式

时间:2016-07-15 18:44:57

标签: python regex

我有错误消息回复...

<HttpError 404 when requesting https://www.googleapis.com/bigquery/v2/projects/di-dtbqquery-us-poc-1/queries?alt=json returned "Not found: Table di-dtbqquery-us-poc-1:lab_auxiliary.antonioTes">`

我只需要双引号之间的文字:"Not found: Table ry-us-poc-1:lab_aiary.antes"

在错误消息中的returned位之后,只有的双引号之间的所有字符的正确正则表达式是什么?我已经搜索堆栈溢出试图找到特定的正则表达式,并没有任何运气。有人可以帮我一把吗?

1 个答案:

答案 0 :(得分:2)

尝试这样的事情:

.*returned "(?P<error_message>.*)"