-
Notifications
You must be signed in to change notification settings - Fork 0
String Sets
Derek Callaway edited this page Apr 19, 2018
·
7 revisions
Mathematically speaking, strglob's syntax actually specifies ordered multisets of strings. It accomplishes this with curly braces. For example, the string shown below expands to four (4) strings:
foo
,bar
,baz
andfoo
. Note thatfoo
repeats itself at the end.
{foo,bar,baz,foo}
foo
bar
baz
foo