Hi, im doing a Weather Channel Forecast animation, but the client wont send me specific words like "rain" or "sunny", etc so I can assign them to a material, so Im doing the following
Example:
input text by client: "rainy day following by a hurricane"
If InStr(text_IN.text, "rainy d")
image_IN.text = "rain"
that way its easy to assing the rain to a png.
but.. the problem is as follows : the client usually starts his sentence with "sunny day at the morning, afterwards rain"
so I want to know if there is a way to search for specific words, like this
if ((search in string "rain"))
image_IN.text = "rain"
if ((search in string "cloudy"))
image_IN.text = "meatballs"
Hi. is there a way to pick a specific word?