21 lines
485 B
OCaml
21 lines
485 B
OCaml
|
open Str
|
||
|
|
||
|
|
||
|
let is_url url =
|
||
|
let regexp = regexp "\\(https?\\://\\)?www\\..+\\..+" in
|
||
|
string_match regexp url 0
|
||
|
|
||
|
|
||
|
let is_youtube_url url =
|
||
|
let regexp = regexp "\\(https?\\://\\)?\\(www\\.\\)?\\(youtube\\.com\\)\\|\\(youtu\\.be\\)/.+" in
|
||
|
string_match regexp url 0
|
||
|
|
||
|
|
||
|
(* Maybe have a list of functions and
|
||
|
* iter on all the items in the list *)
|
||
|
let evaluate str =
|
||
|
match str with
|
||
|
| str when is_url str ->
|
||
|
SimpleHttp.get_http_title (SimpleHttp.get_body str)
|
||
|
| _ -> None
|