作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 PowerShell 中,我有一个字符串,其值类似于:
> text/text/text\text\text\text
:
)字符。所以把它从...
> text/text/text\text\text\text
> text/text/text:\text\text\text
最佳答案
使用 Insert()
和 IndexOf()
字符串方法:
$string = 'text/text/text\text\text\text'
$result = $string.Insert($string.IndexOf('\'),':')
String.IndexOf()
:
Reports the zero-based index of the first occurrence of the specified string in this instance.
String.Insert()
:
Returns a new string in which a specified string is inserted at a specified index position in this instance.
:
:
$result = $string -replace '(?<!\\.*)\\',':\'
关于string - PowerShell - 如何在字符串中的第一个反斜杠之前插入一个冒号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45059413/
我是一名优秀的程序员,十分优秀!