I am trying to deal with regular expressions:
I have a database connection string, and I would like to use a regular expression to identify specific keys and values ββinside it.
for example
server=foo;database=bar;uid=foo;pwd=bar
I need something to return "database = bar;" using a database key to identify it, ideally this would be case insensitive. I can do this using regular code, but I think this is exactly the thing for which regular expressions have been developed.
regex
David_Jarrett
source share