CoderDojoPotsdam / regex-tutorial

Interactive Tutorial for Regular Expressions | Interaktives Tutorial für Reguläre Ausdrücke

Home Page:https://coderdojopotsdam.github.io/regex-tutorial

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Regex example use in different languages

niccokunzmann opened this issue · comments

At the end of the tutorial, I would like to see how to use the regular expression in a program.

Python Example:

import re

text = """..."""
expression = "..."
print(re.findall(text, expression))

We can add more to the last Website.