Get matches by regular expression

1
Hi all, I’ve been through the documentation of the string functions and community commons library and I can’t find a method to get matches out of a string in a microflow using regular expressions.   I must be missing something as this is a basic/fundamental requirement right?   Thanks, Gregor
asked
1 answers
5

You can use the isMatch() method to get the information if a given string is a match. I don’t know of any method that returns all matches that are part of a string. Since Mendix does not support primitive lists or arrays, there would not be a data structure to return a list of matches.

It seems like you need to build a java action for that. Maybe it already exists in the AppStore.

answered