로딩
요청 처리 중입니다...

Simple pattern matching - "globbing"

 Simple pattern matching - "globbing"

By default, lsearch uses the "globbing" method of finding a match. Globbing is the wildcarding technique that most Unix shells use. globbing wildcards are: * Matches any quantity of any character ?

Matches one occurrence of any character \X The backslash escapes a special character in globbing just the way it does in Tcl substitutions. Using the backslash lets you use glob to match a * or ?.

[...] Matches one occurrence of any character within the brackets.

A range of characters can be matched b...