本帖最后由 Huiseyu 于 2015-9-11 20:24 编辑
看看#include'array.au3'
Local $str = _
'驱动器 C 中的卷没有标签。' & @CR _
& '卷的序列号是 36FE-FE73' & @CR _
& '' & @CR _
& 'C:\Windows\Microsoft.Net\Framework 的目录' & @CR _
& '' & @CR _
& '2010/11/21 11:31 <DIR> v1.0.3705' & @CR _
& '2009/07/14 11:20 <DIR> v1.1.4322' & @CR _
& '2015/08/19 18:39 <DIR> v2.0.50727' & @CR _
& '2011/04/12 22:45 <DIR> v3.0' & @CR _
& '2015/07/28 19:53 <DIR> v3.5' & @CR _
& '2015/09/11 07:32 <DIR> v4.0.30319' & @CR _
& ' 0 个文件 0 字节' & @CR _
& ' 6 个目录 62,238,863,360 可用字节'
MsgBox(32 ,'String' ,$str)
$result = StringRegExp($str ,'\>.+(v[\d.]*)' ,3)
$result = _ArrayToString($result)
$result = StringRegExpReplace($result ,'\|' ,@CRLF)
MsgBox(32*2,'Result' ,$result)
|