Hi Team,Using search bar I need to find the exact text/word from the paragraph. I have added n number of texts in the support page now I need to search the text/word which is searched in the search bar. Is there any solution for this.Thanks,Gowtham
You can use RegEx for this. In the Text component there is an action called RegEx_Search that will do what you want. There are also other components like TextProcessing that also have regex actions.
More about regex here: https://www.regexbuddy.com/regex.html
You can also use the Index action but this one is only usable to non-complex string matching
Hope this helps,
Vincent
Hi @Gowtham Virumandi I myself also use this case. and the solution is You can use a OutSystems built-in function Index() to find out any word in another text just like
Index("Your Identity","Your")<>-1
You can use your own variables inside the Index variable.
I hope this will help