I need to find the third letter of given text input,,
My Scenario is If third letter of given input is "C" , I should process some logic ,
So please give a idea to find the third letter of given input,
Thanks in advance
Hi Vel,
You can use the Substring function.
Hey,
use substr
Substr(inputText,2,1)
and output will be your 3rd character from input and then you will compare it with C and write further logic
For more details about built in function check given link.
Built-in Functions - OutSystems 11 Documentation
Thanks
Yogesh
Got Solution ,Thank you for all