$FUNCNAME$
  GLOB()
$CATEGORY$
  STRING
$SUMMARY$
	Check confirmity string to regular expression.
$LANG_RU$
	     .
$SYNTAX$
     GLOB(<sString>, <sReg>, [<lIgnoreCase>]) 	--> TRUE || FALSE
$ARGUMENTS$
     <sString>	String, is the source string.
     <sReg>	String, is the simple regular expression.
     <lIgnoreCase>	Logical, is TRUE if ignore case sensitive (by default FALSE)
$LANG_RU$
     <sString>	String,  
     <sReg>	String,   
     <lIgnoreCase>	Logical, TRUE,     (  FALSE)
$RETURNS$
     Returns TRUE if string corresponding to regular expression.
$LANG_RU$
      TRUE,     .
$DESCRIPTION$
     GLOB() returns TRUE if string corresponding to regular expression.
     The expression <sReg> is the simple regular expression by DOS rules.
$LANG_RU$
     GLOB()  TRUE,     .
      <sReg>     ,   DOS.
$EXAMPLES$

? GLOB("aaa", "aaa") 		// --> TRUE
? GLOB("aaa", "[a-z]*")		// --> TRUE
? GLOB("aaa", "a*") 		// --> TRUE
? GLOB("aaa", "*") 		// --> TRUE
? GLOB("aaa", "a") 		// --> FALSE
? GLOB("", "a") 		// --> FALSE
? GLOB("", "*") 		// --> TRUE
$PLATFORMS$
   No dependies of platform.
   $LANG_RU$
      
$SEEALSO$
$AUTHOR$
ITK
   $LANG_RU$

$END$

