+ 1

Python Regular Expressions

Does anybody know/explain what the following python regular expressions match? r'\$<\d+>[/*]?' r'\$\$|\${\w+}'

26th Jul 2020, 11:16 PM
Edward Finkelstein
Edward Finkelstein - avatar
2 Réponses
+ 2
I will try to answer by adding some cases. r"\$<\d+>[/*]?" matchs: $< continuous with one and more digit then, > zero or one / or * Example: $<1> $<2>/ $<007>* r"\$\$|\${\w+}" matchs: 1st Alternative \$\$: $$ 2nd Alternative \${\w+}: ${ [a-zA-Z0-9_] one or more times } Example: $$ ${iOS_11} You might also want to check out this online regex tester, https://regex101.com Hope this helps.
27th Jul 2020, 3:34 AM
Esch
Esch - avatar
+ 1
Esch Thank you very much. It makes much more sense now.
27th Jul 2020, 6:33 AM
Edward Finkelstein
Edward Finkelstein - avatar