Reputation: 83
I am new new to batch scripting.
Need some help to extract string value
from the below string:
value=string_value (character)
Required Output: string_value
Upvotes: 2
Views: 171
Reputation: 7095
Try this:
for /f "tokens=2 delims== " %%a in ("value=string_value (character)") do echo %%a
Upvotes: 1