#include <Array.au3>
Local $sSource = '张三,,693628,473980.00,239.68,0.00,0.00,0.00,0.00,0.00,0.00,0.00,100239.68,0.00,0.00,260.00,0.00,0.00,0.00%,0.00,0.000,0.000,239.68,239.68,2023-04-20,100239.68,100239.68,0.00,260.00,99879.68,0.00,0.00,100000.00,0.00,20.32,,0.00'
;~ MsgBox(0, '源字符串', $sSource)
Local $aSRE = StringRegExp($sSource, '(?m)^.+?(\d+-\d+-\d+),([\d\.]+).+?([\d\.]+),[\d\.]*,[\d\.]*$', 3)
If Not @Error Then MsgBox(0, '匹配数量: ' & UBound($aSRE), '其中[0]元素为: ' & $aSRE[0])
_ArrayDisplay($aSRE, UBound($aSRE))