Skip to content

Commit d4e816d

Browse files
committed
Fixed issue #1 and another bug exposed by new test(s)
1 parent dfcf8e8 commit d4e816d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

StringRegExpSplit.au3

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Global Enum Step *2 $PREG_SPLIT_NONE = 0, $PREG_SPLIT_NO_EMPTY = 1, $PREG_SPLIT_
66

77
Func StringRegExpSplit($sString, $sPattern, $iLimit = 0, $iFlags = $PREG_SPLIT_NONE)
88
Local $iPrevOffset = 1, $iOffset = 1, $aMatches, $aReturn[0], $i, $sValue, $iCount = 0
9+
If BitAND($PREG_SPLIT_DELIM_CAPTURE, $iFlags) And $iLimit > 0 And $iLimit < 2 Then
10+
Local $aReturn[1] = [$sString]
11+
Return $aReturn
12+
EndIf
913
While 1
1014
If $iLimit > 0 And $iCount >= $iLimit Then ExitLoop
1115
$aMatches = StringRegExp($sString, $sPattern, 2, $iOffset)
@@ -28,7 +32,7 @@ Func StringRegExpSplit($sString, $sPattern, $iLimit = 0, $iFlags = $PREG_SPLIT_N
2832
Next
2933
EndIf
3034
$iPrevOffset = $iOffset
31-
$iCount += 1
35+
$iCount += BitAND($PREG_SPLIT_DELIM_CAPTURE, $iFlags) ? 2 : 1
3236
If StringLen($aMatches[0]) = 0 Then $iOffset += 1
3337
WEnd
3438

0 commit comments

Comments
 (0)