i have a sentence that "Benefit Period: To Age 75; Indexation: CPI Linked" in this I need to validate that whether "Indexation: CPI Linked" is found or not
please give me a suggestion
Discussion posts and replies are publicly visible
Make a use of a!isInText( text, subtext )
a!isInText("Benefit Period: To Age 75; Indexation: CPI Linked", "Indexation: CPI Linked")
Do it this way… it works the way you need.