(wcmatch "ht125,jk34,xx25" "*`,*")
T
(wcmatch "ht125" "*`,*")
nil
http://docs.autodesk.com/ACD/2011/ENU/filesALR/WS1a9193826455f5ff1a32d8d10ebc6b7ccc-6754.htm
have to add ` in front of character which has some function.
this is backquote ` (leftside of 1) = grave key,
not quote ' (rightside of L in keyboard)
because wcmatch can have multiple pattern like this.
(wcmatch "Name" "???,~*m*,N*")
in this case , means "OR"
or can use ascii code of ` = (chr 96)
(wcmatch "ht125,dsdf,sdf" (strcat "*" (chr 96) ",*"))
T
(wcmatch "ht125dsdfsdf" (strcat "*" (chr 96) ",*"))
nil