替换字符串内的引号

时间:2019-02-21 12:02:25

标签: powershell

我有一个具有以下格式的字符串:

$string = '123 test "replace here" 456 "windows 10" end'

我需要用空格定界符分割字符串,但将引号部分保持为一个单位。我试图替换引号中的空格,所以应该像

$string = '123 test "replace_here" 456 "windows_10" end'

但是.Replace()方法适用于所有空格。我该如何仅对引用的零件使用替换?

0 个答案:

没有答案