使用TCL语法将InternetGatewayDevice.LANDevice.1.Hosts.Host.1.AddressSource Static InternetGatewayDevice.LANDevice.1.Hosts.Host.2.AddressSource DHCP中含有DHCP的一行匹配取出
时间: 2024-03-21 20:43:26 浏览: 204
查找局域网中的DHCP服务器.docx
可以使用TCL中的正则表达式来匹配字符串中含有"DHCP"的行,代码如下:
```
set str "InternetGatewayDevice.LANDevice.1.Hosts.Host.1.AddressSource Static InternetGatewayDevice.LANDevice.1.Hosts.Host.2.AddressSource DHCP"
set lines [split $str "\n"]
foreach line $lines {
if {[regexp {DHCP} $line]} {
puts $line
}
}
```
运行结果为:
```
InternetGatewayDevice.LANDevice.1.Hosts.Host.2.AddressSource DHCP
```
阅读全文