I have a string like this:
Testing:"abc"def"ghi"
I want to get: abc"def"ghi and put it into a variable, is there any possible way?
I want a general way of doing that (first and last quotes, not first and fourth quotes)
|
I have a string like this:
I want to get: I want a general way of doing that (first and last quotes, not first and fourth quotes) |
||||
|
|
|
This will work reliably as long as the string does not contain unquoted special characters like
-- OUTPUT --
Explanation There are two parts to this solution, both in the same line of code. 1) Remove all characters up through the first This part uses the documented search and replace feature of variable expansion, with an asterisk before the search string. The following is an excerpt from the help gotten by typing
2) Find the last occurrence of The entire SET assignment expression can be enclosed in quotes, and the enclosing quotes will be discarded and all text after the last quote ignored. The statement below will define variable
If there is no last quote, then the entire remainder of the line is included in the value, possibly with hidden spaces.
I am not aware of any official documentation for this feature, but it is an important tool for batch file development. This process occurs after the expansion from part 1 has completed. So the the SET truncates at the last occurrence of |
||||