Hide Forgot
Description of problem: In customers words ~~~ 1. Can I use regular expressions to transform the values that come from the data source? For example without regular expression: Query: Select Field from Table Result: "Hello World" # "# (" ($ "# ($!" #% $ = °°°:! [* [* " With regular expression: Query: Select ???? from Table Result: "Hello World" ~~~ Additional info: Customer might be looking for similar REGEX Functions provided in Oracle like ~~~ https://docs.oracle.com/cd/B28359_01/server.111/b28286/functions138.htm ~~~ for example ~~~ SELECT REGEXP_SUBSTR('500 Oracle Parkway, Redwood Shores, CA', ',[^,]+,') "REGEXPR_SUBSTR" FROM DUAL; REGEXPR_SUBSTR ----------------- , Redwood Shores, ~~~