User_Name=root;Password=1234;Server=192.168.1.49;DriverID=MySQL;Database=dbTest
How can i parse this string in batch-file. All samples about substrings are get X-to-Y.. But my string is dynamic.
I want to get between = and ; and set the variables:
username = root
password = 1234
server = 192.168.1.49
driverid = MySQL
database= dbTest
:~start,length notation is not fit for me.. Any other option ?
user_nameas a variable, right?