Code: Select all
\\"colorName\\":\\"GLOSS REDSKY SHDWSIL WHT IMPASTO\\"
\\"colorName\\":\\"GLOSS PREMIUM FJORD METALLIC / WHITE METALLIC SILVER\\"Der HTML-Code wird in „response.text“ mit Python Scrapy zurückgegeben. Ich möchte GLOSS REDSKY SHDWSIL WHT IMPASTO und GLOSS PREMIUM FJORD METALLIC / WHITE METALLIC SILVER aus dem Code-Snippet mit Regex extrahieren.
Code: Select all
re.findall('\\\\"colorName\\\\":\\\\"(.*?)\\\\"', response.text)
Code: Select all
{
"selector": "\\\\"colorName\\\\":\\\\"(.*?)\\\\""
}
Code: Select all
Error: Parse error on line 4:
... "selector": "\\\\"colorName\\\\":\\\\"
-----------------------^
Expecting 'EOF', '}', ':', ',', ']', got 'undefined'
Code: Select all
{
"selector": "\\\\\\\\\"colorName\\\\\\\\\":\\\\\\\\\"(.*?)\\\\\\\\\""
}
Mobile version