Open kod-kristoff opened 4 years ago
UB supports
*
matches zero or more of any symbol?
matches exactly one of any symbolabc def
enables implicit searches for abc
AND def
"abc def"
only searches for abc def
petterson
matches petterson
(and not pettersson
)+
is matched as ANDGotlib supports
*
matches zero or more of any symbol.abc def
is implicit interpreted as abc
AND def
"abc def"
limits searches to find the expression inside the "abc def"
.In glob:
*
matches zero or more of any symbol.?
matches exactly one of any symbol.[abc]
matches exactly one of any symbol of those inside the []
[!abc]
matches exactly one of any symbol but those inside []
Current semantics:
*
matches zero or more of any symbol.<whitespace>
is implicitly interpreted as AND.Proposals:
o
findso
orö
,a
findsa
,å
orä
.Petterson
findsPettersson
"lunds stadsbibliotek"
*
matches zero or more?
matches exactly one+
-> implicit AND~
-> implicit AND-
-> implicit AND""
matches whole expressionao
also matchesåäö
åäö
also matchesao