/* $DOC$ $AUTHOR$ 2016 Pete D. $TEMPLATE$ Function $NAME$ hb_AtI() $CATEGORY$ API $SUBCATEGORY$ Strings $ONELINER$ Locates the position of a substring in a main string. $SYNTAX$ hb_AtI( , , [], [] ) --> nPos $ARGUMENTS$ the sub-string to search for The main string to search into, for Beginning search position into , default: 1 Ending search position, default: Length of (i.e. entire ) $RETURNS$ hb_AtI() returns the position (if any), into main string, where first time the substring appears. $DESCRIPTION$ This function has same functionality as hb_At() with the significant difference that it's case Insensitive. Optionally, with can be defined the position into main string from where the search of must begin and with the position where it must stop. If neither of them is defined, is 1st position and the ending of . $EXAMPLES$ ? hb_At( "AS", "as simple as possible", 5 ) // --> 0 ? hb_AtI( "AS", "as simple as possible", 5 ) // --> 11 $STATUS$ R $COMPLIANCE$ H $PLATFORMS$ All $FILES$ Library is core $SEEALSO$ hb_At() $END$ */