https://github.com/pbalduino/clojureverbalexpressions
https://github.com/pbalduino/clojureverbalexpressions
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pbalduino/clojureverbalexpressions
- Owner: pbalduino
- Created: 2013-08-07T13:19:52.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2019-12-27T16:45:56.000Z (over 5 years ago)
- Last Synced: 2025-03-27T06:19:05.173Z (3 months ago)
- Language: Clojure
- Size: 6.84 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# verbal-expressions 0.1.0
Clojure implementation of @jehna's Verbal Expression.
Original library: [https://github.com/jehna/VerbalExpressions]
## Usage
```clojure
(def valid-url? (verbal-expression start-of-line
(then "http")
(maybe "s")
(then "://")
(maybe "www.")
(anything-but " ")
end-of-line))(valid-url? "http://www.google.com")
```## License
Copyright © 2013
Distributed under the Eclipse Public License, the same as Clojure.