Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python get chars among quotation marks

# credit to the Stack Overflow user in the source link

import re
re.findall('"([^"]*)"', 'SetVariables "a" "b" "c" ')
>>> ['a', 'b', 'c']
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Python #chars #quotation #marks
ADD COMMENT
Topic
Name
4+1 =