Open practicalli-johnny opened 4 years ago
comma separated data can use clojure.split #","
re-seq #"[a-zA-Z0-9]+" for words and integer numbers
re-seq #"[a-zA-Z0-9.]+" for words and numbers (integer and decimal).
. has a special meaning in regex, it matches (almost) everything, so need to use the escaped version, \.
.
\.
comma separated data can use clojure.split #","
re-seq #"[a-zA-Z0-9]+" for words and integer numbers
re-seq #"[a-zA-Z0-9.]+" for words and numbers (integer and decimal).
.
has a special meaning in regex, it matches (almost) everything, so need to use the escaped version,\.