skip to Main Content

Regex of PostgreSQL Connection String

I am writing a regular expression for capturing the connection string of PostgreSQL. The format of the connection string as follows: (postgresql|postgres)://[userspec@][hostspec][/dbname][?paramspec] where userspec is: user[:password] and hostspec is: [host][:port][,...] and paramspec is: name=value[&...] Here, the userspec, port, dbname and…

VIEW QUESTION

Unable to create Regex for JSON value

I have JSON for which I sometimes got some alphanumeric name in one key value name and sometimes it is null like below. {"name":"77Watcher"} {"name":null} I have to validate the data I am using like below. {"name":"${json-unit.matches:^([A-Za-z0-9]+|null)$}"} But getting Matcher…

VIEW QUESTION
Back To Top
Search