Android Question indexof question

tufanv

Expert
Licensed User
Longtime User
Hello
I want to find the index of

txtkod2.Indexof("iShares MSCI Turkey ETF","primaryExchange")

but becaue of the inner "s the code doesnt work. How can i find exactly the phrase:
iShares MSCI Turkey ETF","primaryExchange

ty
 

DonManfred

Expert
Licensed User
Longtime User
Have you tried to use

B4X:
txtkod2.Indexof($"iShares MSCI Turkey ETF","primaryExchange"$)
 
Upvote 0
Top