Please enable JavaScript to view this site.

 

int = List_LocateString(sListVarName,sSomeText)

 

This macro function is used to find the position in a list of the string sSomeText.

 

In the image, on the right, the various parts of a list are shown.

 

Each element of a list contains a string and, optionally, a number.

If the string contains an equal sign (=), then it is possible to access the text on the left as the "name"  and the text on the right as the "value".

 

Consider the macro code below, which adds some entries to a list and then calls various list functions to get back some information.

List_Clear(sListCountries)
// put some values in the list
List_Add(sListCountries, 'Egypt=Ägypten'10133)     // item 1
List_Add(sListCountries, 'Albania=Albanien'10165)  // item 2
List_Add(sListCountries, 'Algeria=Algerien'10183)  // item 3
List_Add(sListCountries, 'Andorra=Andorra'10167)   // item 4
List_Add(sListCountries, 'Armenia=Armenien'10180)  // item 5
// now get some information back from the list
nResult = List_LocateName(sListCountries, 'Andorra'// 4 
nResult = List_LocateNumber(sListCountries, 10133// 1  
nResult = List_LocateValue(sListCountries, 'Armenien'// 5  
nResult = List_LocateString(sListCountries, 'Algeria=Algerien'// 3  

When using lists, don't forget to always use the function List_Create to create your list at the top of the macro, and then the function List_Destroy to destroy it at the end of the macro.

 

See also: list macro functions.

 


Topic 178310, last updated on 20-May-2020