lonious
lonious

Reputation: 696

Using Regular Expressions on my Raspberry Pi

Is there an editor that I could install on the Raspbian OS to practice Regex with? If not, what about through Python? If so, is there a good python IDE out there for Raspbian that supports Regexs?

Upvotes: 2

Views: 436

Answers (1)

nneonneo
nneonneo

Reputation: 179687

Python itself supports regexes (via a built-in module). If you're just interested in playing around with them, import re in an interactive shell, and you have access to Python's regular expression engine.

Upvotes: 2

Related Questions