- 1
pattern matching in python
can anyone help me (r'\,+\s?(\w*\s?\w*)\"*
#x27;) this pattern is used for which matching sentences Thanks in advance2 Antworten
0
That is for
\, +: "," 1 or more
\s: space or not
\w* cero or more letter or number or simbol
\"*: ceror more "
0
Try here:https://regex101.com/