Re: searching through an array of strings?

2016-05-14 Thread AudioGames . net Forum — Developers room : sneak via Audiogames-reflector
Re: searching through an array of strings? Awesome! That's a huge confidence boost for me, knowing that I understand it enough to be able to give you exactly what you needed. Glad to help. URL: http://forum.audiogames.net/viewtopic.php?pid=260478#p260478

Re: searching through an array of strings?

2016-05-14 Thread AudioGames . net Forum — Developers room : Omar Alvarado via Audiogames-reflector
Re: searching through an array of strings? Hey,Thanks for the quick reply!I'm happy to say this is what I was looking for! Thanks a bunch sneak! URL: http://forum.audiogames.net/viewtopic.php?pid=260473#p260473 ___ Audiogames-reflector

Re: searching through an array of strings?

2016-05-14 Thread AudioGames . net Forum — Developers room : sneak via Audiogames-reflector
Re: searching through an array of strings? Look at the help file in the bgt manual on string_contains.Just change it to return string_contains(arrayString[x], "Diana"); That should return the position where the character set starts in the string. URL: http://forum.audi

Re: searching through an array of strings?

2016-05-14 Thread AudioGames . net Forum — Developers room : Omar Alvarado via Audiogames-reflector
Re: searching through an array of strings? hello,This does work, and does partially solve the problem, however I completely forgot to mention I need to find the actual position in the array where the string is found, since that is what I am dealing with. Lol, its what happens when I write

Re: searching through an array of strings?

2016-05-14 Thread AudioGames . net Forum — Developers room : sneak via Audiogames-reflector
Re: searching through an array of strings? If you mean how to search each entry in the array to see if it contains a phrase or character then yes there is.I realized after posting that I should've commented this out to explain what I'm doing. //This declares the array of type string called

Re: searching through an array of strings?

2016-05-14 Thread AudioGames . net Forum — Developers room : sneak via Audiogames-reflector
Re: searching through an array of strings? If you mean how to search each entry in the array to see if it contains a phrase or character then yes there is.I realized after posting that I should've commented this out to explain what I'm doing. //This declares the array of type string called

Re: searching through an array of strings?

2016-05-14 Thread AudioGames . net Forum — Developers room : sneak via Audiogames-reflector
Re: searching through an array of strings? If you mean how to search each entry in the array to see if it contains a phrase or character then yes there is.string[] arrayString(5);arrayString[0]="Hi my name is George.";arrayString[1]="Hi my name is Alex.";arrayString[2]=