Skip to content

Instantly share code, notes, and snippets.

@spdegabrielle
Created June 26, 2020 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spdegabrielle/e1c8debd75cdbd0cd23f94619ecefc23 to your computer and use it in GitHub Desktop.
Save spdegabrielle/e1c8debd75cdbd0cd23f94619ecefc23 to your computer and use it in GitHub Desktop.
match url
#lang racket/base
(provide match-url)
(define (match-url str)
(regexp-match-positions* #px"https?\\://\\S+" str))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment