Is the arrangement always the same (2â and only 2 equal signs)?
You can invoke Split with the delimiter "=", and just use the second element of the returned array.
You could locate the 1st "=" (.IndexOf()) and the second "=" (.LastIndexOf()) (storing their locations in variables, and then use the Mid function, or the stringâs .SubString() function using those vars (and the appropriate "+ 1" and "- 1").
|