Name
Parent
Visibility
Description
|
Recherche un mot en première position d'une chaîne de la liste Recherche un mot placé en première position d'une chaîne de la liste (des espaces peuvent se trouver devant), en débutant et s'arrêtant à des index spécifiés. |
Source code
|
function FindFirstWord ( const Word : string ; BeginSearchAt : Integer = 0 ; EndSearchAt : Integer = - 1 ) : Integer |
Parameters
|
Parameter |
Description |
WORD : STRING |
Mot à rechercher |
BeginSearchAt : INTEGER |
Index à partir duquel chercher |
EndSearchAt : INTEGER |
Index jusqu'auquel chercher (jusqu'à la fin si -1) |
|
Return
|
Types |
Description |
INTEGER |
Index de la première chaîne contenant Word, ou -1 si non trouvée |
|
|