Hello,
There are various kinds of arrays in symbain. I would like to know is there any array where I can store non-modifiable string and later on I can search the array by the string. For instance, my array contains 3 strings such as follows:
1. “abc”
2. “efg”
3. “hij”
Later I want to search “efg” exist in my array or not by keyword "efg". So could anyone suggest which array provides that kind of functionality (preferable fast searching)? I can build my own logic by creating array and access each element and check contains of the element and so on. But I think there might be some API already exists that provides such capabilities.

Reply With Quote

