Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
microwin88x
Creator III
Creator III

Find Text in String

Hello,

I have the text ABC.

I want to know if ABC is in the following String: DEF, CBX, ABC, RST, DPF.

Do you know how could I do that in a Text Object?

Thank you!

1 Solution

Accepted Solutions
sunny_talwar

May be this:

=If(SubStringCount(YourString, 'ABC') >= 1, 1)

View solution in original post

2 Replies
sunny_talwar

May be this:

=If(SubStringCount(YourString, 'ABC') >= 1, 1)

jpenuliar
Partner - Specialist III
Partner - Specialist III

=Mid('DEF, CBX, ABC, RST, DPF',Index('DEF, CBX, ABC, RST, DPF','ABC'),3)