Examples using... unicode.IsLetter()
Recent
Functions starting with "Is" can be used to inspect which table of range a
rune belongs to. Note that runes may fit into more than one range.
Package scanner provides a scanner and tokenizer for UTF-8-encoded text.
It takes an io.Reader providing the source, which then can be tokenized
through repeated calls to the Scan function. For compatibility with
existing tools, the NUL character is not allowed. If the first character
in the source ...
TrimRightFunc returns a slice of the string s with all trailing
Unicode code points c satisfying f(c) removed.
TrimLeftFunc returns a slice of the string s with all leading
Unicode code points c satisfying f(c) removed.
TrimFunc returns a slice of the string s with all leading
and trailing Unicode code points c satisfying f(c) removed.
FieldsFunc splits the string s at each run of Unicode code points c satisfying f(c)
and returns an array of slices of s. If all code points in s satisfy f(c) or the
string is empty, an empty slice is returned.
FieldsFunc makes no guarantees about the order in which it calls f(c).
If f does not retur...
FieldsFunc interprets s as a sequence of UTF-8-encoded code points.
It splits the slice s at each run of code points c satisfying f(c) and
returns a slice of subslices of s. If all code points in s satisfy f(c), or
len(s) == 0, an empty slice is returned.
FieldsFunc makes no guarantees about the ord...