认为我找到了最糟糕的方法:

$ip = "192.168.13.1"
$a,$b,$c,$d = $ip.Split(".")
[int]$c = $c
$c = $c+1
[string]$c = $c
$newIP = $a+"."+$b+"."+$c+"."+$d

$newIP

但最好的方法是什么?完成后必须是字符串。不用担心验证其合法 IP。

最佳答案

使用您想要如何修改第三个八位字节的示例,我会以几乎相同的方式进行,但我会将一些步骤压缩在一起:

$IP = "192.168.13.1"
$octets = $IP.Split(".")                        # or $octets = $IP -split "\."
$octets[2] = [string]([int]$octets[2] + 1)      # or other manipulation of the third octet
$newIP = $octets -join "."

$newIP

10-06 13:05