42
Views
3
Comments
Solved
How to find the third letter of given text input

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

2024-11-20 08-28-20
Pedro Marques
Solution

Hi Vel,

You can use the Substring function.


2023-12-14 09-56-57
Yogesh Javir
Solution

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 

2024-11-20 08-28-20
Pedro Marques
Solution

Hi Vel,

You can use the Substring function.


2023-12-14 09-56-57
Yogesh Javir
Solution

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 

2024-09-15 15-21-20
Vel Raja Balasubramanian

Got Solution ,Thank you for all 

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.