Regex Parameters
Completed
trying to match {{.example}}
with regex:
\{\{\.([a-zA-Z]+)}}
Doesn't seem to work, does datagrip have some special use for {{}}?
Please sign in to leave a comment.
Do you use it for user parameters? If yes, please, share a screenshot of the setting dialog.
@Htmathias You missed escaping for second pair of curly bracers:
\{\{\.\w+\}\}Updated to the new version of datagrip too.
@Htmathias Does it work?