RosettaCodeData/Task/Regular-expressions/OCaml/regular-expressions-1.ocaml

7 lines
172 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#load "str.cma";;
let str = "I am a string";;
try
ignore(Str.search_forward (Str.regexp ".*string$") str 0);
print_endline "ends with 'string'"
with Not_found -> ()
;;