I have string like below;
oradb = Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.87.50)(PORT=1521)))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=testdb)));User Id = john; Password=test;
I want to get only '192.168.87.50' , '1521' , 'testdb' , 'john' from above connection string and put into some textboxes.
I tried to make with regexp and understand that it's not possible with regexp.
How can I do it?