https://github.com/princemaple/regex-talk
In house regex talk
https://github.com/princemaple/regex-talk
Last synced: 6 months ago
JSON representation
In house regex talk
- Host: GitHub
- URL: https://github.com/princemaple/regex-talk
- Owner: princemaple
- License: mit
- Created: 2014-09-22T01:13:43.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-09-25T15:52:37.000Z (over 11 years ago)
- Last Synced: 2025-03-17T20:13:30.799Z (over 1 year ago)
- Size: 121 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Regex Talk
==========
In house regex talk, Zendesk Melbourne
### Useful links
- Info
- [The best regex info site](http://www.regular-expressions.info/) - http://www.regular-expressions.info/
- Tools
- [Shows graph](http://www.regexper.com/) - http://www.regexper.com/
- [Test regex](https://www.debuggex.com/) - https://www.debuggex.com/
- [Test regex](http://www.regexr.com/) - http://www.regexr.com/
- cheatsheet
- reference
- examples
- [Test regex](http://rubular.com/) - http://rubular.com/
- Ruby
- [Test and explanation](http://regex101.com/) - http://regex101.com/
- formatting tool
- code generator
### Language specific references
- [Ruby Regexp](http://www.ruby-doc.org/core-2.1.3/Regexp.html)
- [Python re](https://docs.python.org/2/library/re.html)
- [JS MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions)
### Exercises
- https://www.hackerrank.com/challenges/detecting-valid-latitude-and-longitude
- https://www.hackerrank.com/challenges/ip-address-validation
- https://www.hackerrank.com/challenges/detect-the-domain-name
#### Code templates
```ruby
ARGV.readlines.each do |line|
# regex match
# prints output
end
```
```python
import re
import sys
for line in sys.stdin:
# regex match
# prints output
```