win7自带的正则表达式验证工具----powershell
最近项目中要用正则表达式,忽然想起powershell可以啊...
用了一下,很爽...
下面给个例子
$str='eax=77431182ebx=7ffd8000ecx=00000000edx=00123689esi=00000000edi=00000000'
$str1='eip=00123689esp=0023f7e4ebp=0023f7eciopl=0nvupeiplzrnapenc'
$str-match'eax=([0-9a-f]{8})ebx=([0-9a-f]{8})ecx=([0-9a-f]{8})edx=([0-9a-f]{8})esi=([0-9a-f]{8})edi=([0-9a-f]{8})'
$matches
输出
600000000
500000000
400123689
300000000
27ffd8000
177431182
0eax=77431182ebx=7ffd8000ecx=00000000edx=00123689esi=00000000edi=00000000
-match是正则验证,类似regex_search
验证完,将结果放在全局变量$matches中
相关推荐
wangzhaotongalex 2020-10-20
wyq 2020-11-11
TLROJE 2020-10-26
风雨断肠人 2020-10-13
duanqingfeng 2020-09-29
rechanel 2020-11-16
cshanzhizi 2020-10-16
luofuIT成长记录 2020-09-22
phphub 2020-09-10
taomengxing 2020-09-07
MaggieRose 2020-08-19
flyingssky 2020-08-18
山水沐光 2020-08-18
jyj00 2020-08-15
AHuqihua 2020-08-09
山水沐光 2020-08-03