Skip to content

Commit 6d69898

Browse files
committed
Added support for flag PREG_SPLIT_OFFSET_CAPTURE
1 parent d5c818a commit 6d69898

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

StringRegExpSplit.au3

+8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ Func StringRegExpSplit($sString, $sPattern, $iLimit = 0, $iFlags = $PREG_SPLIT_N
1313
$iOffset = @extended
1414

1515
$sValue = StringMid($sString, $iPrevOffset, $iOffset - StringLen($aMatches[0]) - $iPrevOffset)
16+
If BitAND($PREG_SPLIT_OFFSET_CAPTURE, $iFlags) Then
17+
Local $aValue = [$sValue, $iPrevOffset]
18+
$sValue = $aValue
19+
EndIf
1620
If (Not BitAND($PREG_SPLIT_NO_EMPTY, $iFlags)) Or (Not $sValue = "") Then
1721
ReDim $aReturn[UBound($aReturn, 1) + 1]
1822
$aReturn[UBound($aReturn, 1) - 1] = $sValue
@@ -29,6 +33,10 @@ Func StringRegExpSplit($sString, $sPattern, $iLimit = 0, $iFlags = $PREG_SPLIT_N
2933
WEnd
3034

3135
$sValue = StringMid($sString, $iPrevOffset)
36+
If BitAND($PREG_SPLIT_OFFSET_CAPTURE, $iFlags) Then
37+
Local $aValue = [$sValue, $iPrevOffset]
38+
$sValue = $aValue
39+
EndIf
3240
If (Not BitAND($PREG_SPLIT_NO_EMPTY, $iFlags)) Or (Not $sValue == "") Then
3341
ReDim $aReturn[UBound($aReturn, 1) + 1]
3442
$aReturn[UBound($aReturn, 1) - 1] = $sValue

0 commit comments

Comments
 (0)