How to get what is between the quotes in the following two texts ?
text_1 = r""" "Some text on "two" lines with a backslash escaped"
+ "Another text on "three" lines" """
text_2 = r""" "Some text on "two" lines with a backslash escaped" + "Another text on "three" lines" """
The problem for me is that the quotes should be ignored if they are escaped, but there is the possibilty to have the backslash escaped.
I would like to obtain the following groups.
[
r'Some text on "two" lines with a backslash escaped\',
r'Another text on "three" lines'
]
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…