Replies: 3 comments
-
@jwiley84 making sure this is on your radar. Please provide an update if possible. |
Beta Was this translation helpful? Give feedback.
-
Hi @alevinetx Thank you for the feedback. We are looking into this and will update you soon. |
Beta Was this translation helpful? Give feedback.
-
I was thinking about the implementation as an available function, and trying to understand how I would use it and find a balance of flexibility, composition, and coupling. If the regex parser is an inlined function, an idea: However, if having to use it as a discrete step is needed, then
I'm leaning towards the discrete step, using the first option, as the best answer to the desired balance + scalability |
Beta Was this translation helpful? Give feedback.
-
Is your feature request related to a problem? Please describe.
When the
Intent recognized
trigger is used with named groups in the regex, eg(?<groupName[a-z])
, the named groups are accessible to assign to properties via@groupName
.However, there doesn't appear to be any other way to access named groups, like in user input validation groups or a built-in regex parser via an expression.
Describe the solution you'd like
Providing consistent behavior in regex groups, wherever used (input, validators, etc), would improve usability in data manipulation.
Also, having a built-in regex parser to use in expressions would aid in cases where the data is not being fed from an input/validator.
Describe alternatives you've considered
Additional context
Beta Was this translation helpful? Give feedback.
All reactions