Unicode.Regex.split_character_classes

You're seeing just the function split_character_classes, go back to Unicode.Regex module for more information.
Link to this function

split_character_classes(string)

View Source

Split a regex into character classes so that these can then be later compiled.

Arguments

  • string is a regular expression in string form.

Returns

  • A list of string split at the boundaries of unicode sets

Example

iex> Unicode.Regex.split_character_classes("This is [:Zs:] and more")
["This is ", "[:Zs:]", " and more"]