Position =  text .search  (  Text ,  TextToSearch  )  
                                
Description :

This instruction searches for a string within another string.

Parameters :

  • Text.
  • Text to search.

Return Value :

  • Position of the first found char, NULL otherwise.

Notes :


To consider lower case / upper case differences, one should use text.case.select ().

Examples :