FindInFiles:

------------------------------------------------------------------------
   Find all files that contain a specified string.
------------------------------------------------------------------------
   Form:
   [files,lineNums,lines] = FindInFiles( string,caseSensitive,wholeWord, 
                                               includeComments, fileSet );
------------------------------------------------------------------------

   ------
   Inputs
   ------
   string           (:)      Text string to search for.
                                Note: If no string is provided, or if '' is provided, the
                                      function will return the entire searchable file set.
                                (Optinal. Default is '')

   caseSensitive    (1)      Flag indicating whether the search should be case sensitive
                                (Optional. Default is NOT case sensitive, 0)

   wholeWord        (1)      Flag indicating whether to search for only the whole word or not
                                (Optional. Default is NOT to constrain search to whole word, 0)

   includeComments  (1)      Flag indicating whether to include comments in the search
                                0 - do NOT include comments in the search
                                1 - INCLUDE comments in the search (no restriction)
                                2 - allow ONLY comments to be included in the search
                                Note: If a "

Children:

Common: General/PathDirectories