An open API service indexing awesome lists of open source software.

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

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
```