I need to extract versionNo string from recent committed svn log using batch command.
I am using following commands,
cd C:\Program Files\TortoiseSVN\bin\
svn --username user --password pass log -r COMMITTED "SVN_PATH"
and it returns,
------------------------------------------------------------------------
r304 | user | 2019-06-10 17:53:23 +0530 (Mon, 10 Jun 2019) | 2 lines
versionNo - 1.2.3.4 committed for Mantis Id - 0000742
------------------------------------------------------------------------
I am not able to save this command result in a variable and extract this string (1.2.3.4).
1.2.3.4from the posted result to a variable - or do you want to use other aspects of the data?for /F...