Lets say I have this SQL Server connection string in C#:
Driver={SQL Server};server=.\sqlexpress;uid=myid;pwd=password;
I would like to remove the Driver= portion of the string, no matter where it appears in the string. So that afterwards it looks like this:
server=.\sqlexpress;uid=myid;pwd=password;
I have been trying Regex for a while with no luck.