No description
Find a file
2023-08-27 04:39:10 +08:00
docs fix comment error 2023-08-27 04:38:44 +08:00
lib fix comment error 2023-08-27 04:38:44 +08:00
test add v 0.0.1 2023-08-27 03:56:41 +08:00
dune-project fix something 2023-08-27 04:15:51 +08:00
LICENSE add license 2023-08-27 04:21:31 +08:00
Makefile fix something 2023-08-27 04:15:51 +08:00
README.md Update README.md 2023-08-27 04:39:10 +08:00
stringCodepointSplitter.opam fix something 2023-08-27 04:15:51 +08:00

stringCodepointSplitter

Split a string to a list of strings of a character by the unicode codepoint.

It requires module Uutf.

for documantations, see docs

Example


let example = "m̄知 who you're." (*don't know who you are*) in

List.map (fun x -> print_string (x ^ ", ")) (StringCodepointSplitter.split_string_by_unicode_codepoint example);;
  
(*it will output : "m, ̄, 知,  , w, h, o,  , y, o, u, ', r, e, ., "*)