Qlik Sense RegEx

I try to find any information about Qlik Sense and RegEx. The target is RegEx in load scripting for string data.

I know it was possible in QlikView by VBA Macros. But it is not suitable for Qlik Sense. Not intresting way with Extensions or Mushups for Qlik Sense.

Is it possible to use RegEx in Qlik Sense? Maybe some one know how call JavaScript function?

@johns693

Please could you clarify where the Pega product falls into your question about the Qlik Sense tool?

Qlik Sense Desktop is a Windows application that allows users to create visualizations, charts, interactive dashboards and analytics apps for local and offline usage.

RegEx/ regular expression is a sequence of characters that specifies a search pattern in text.

If you wish to write a when rule with RegEx within Pega, you can use below expression wherein you can plugin Regex:

pxReplaceAllViaRegex:
pxReplaceAllViaRegex(Param.ContentMessage, “[?, *, <, >, |, : ]”, " ")

Param variable which is mentioned in the function contains the string with special characters.I have instructed function to replace the special characters.So, output of the funtion will be the string without special characters

pxContainsViaRegex:
@pxContainsViaRegex(.pyRuleSetVersion, “[0-9][0-9]\-[0-9][0-9]\-[0-9][0-9]”, false)

The funtion will check whether the attribute pyRuleSetVersion contains the pattern. Depends on match or unmatch you will get boolean output.

To test regEx: please refer to Code-Pega-Parse.RegExpTester (Pegasystems Documentation) or http://www.regexpal.com/

I found this information about RegEx use.

I found this information about how to create a control in Pega Platform that contains an embedded report, using an iframe tag.