afan 发表于 2013-1-25 10:06:57

回复 11# haijie1223

回复 12# happytc #include <Array.au3>
$sString = 'cab=cab cab=b'
$aRes = StringRegExp($sString, '(+)=\1', 4)
Dim $test0 = $aRes, $test1 = $aRes
_ArrayDisplay($test0, '$test0')
_ArrayDisplay($test1, '$test1')
MsgBox(0, '单独使用元素', $test0 & @LF & _
                          $test0 & @LF & _
                          $test1 & @LF & _
                          $test1)

haijie1223 发表于 2013-1-25 10:25:45

回复 16# afan


    谢谢A版,前面我搞错了,不是数组我竟然用了_arraydisplay

annybaby 发表于 2013-1-25 10:40:06

回复 15# haijie1223


    ……
你九楼的$test就是数组啊,后面的$test已经是一个值了,你还_arraydisplay,所以木有效果…

annybaby 发表于 2013-1-25 10:40:57

回复 17# haijie1223


    对,就是这个意思…

haijie1223 发表于 2013-1-25 10:45:30

回复 18# annybaby


    一时神经错乱~
页: 1 [2]
查看完整版本: au3的正则的后向引用怎么搞?