**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
11天前关闭。
Improve this question
我有以下字符串
set var="/host=the_host/core-service=vault:add(vault-options=[("KEYSTORE_URL" => "C:\wildfly-15.0.1.Final\bin\vault\vault.keystore"),("KEYSTORE_PASSWORD" => "MASK-18BzezESSkb72WrhEf6Rsu"),("KEYSTORE_ALIAS" => "vault"),("SALT" => "1234abcd"),("ITERATION_COUNT" => "120"),("ENC_FILE_DIR" => "C:\wildfly-15.0.1.Final\bin\vault/")])"
我想使用Windows批处理只提取MASK-18BzezESSkb72WrhEf6Rsu
值。我已经尝试使用**for
**,但无法找到单独提取密码的任何内容。
1条答案
按热度按时间5t7ly7z51#
使用字符串替换删除不方便的字符,然后遍历剩下的单词列表,如果找到单词before中的字符串,则将
password
设置为标志,并获取下一个。