Search for shorter String in a longer String? possible with Mendix without Java action?

0
Hello!   I would like to search for a specific string like: “abc” in a longer string like “This is a sentence with abc”. I have both strings in my database. Can anyone provide me with some assistance how it is possible with mendix without java actions?   Thank you.
asked
1 answers
1

This should do the trick in a Create variable:

substring('this is my abc knowledge', 
           find('abc', 'this is my abc knowledge'),
           length('abc')
)

 

And if you would like to do this in a retrieve:

answered