﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2618	_StringBetween malfunction when before and after parameters are identical	Morthawt	Melba23	"As documented in this post: http://www.autoitscript.com/forum/topic/157716-stringbetween-issue-causing-muddy-results/

When ever you use the before and after as the same string, you end up getting a completely messed up result. For example

#include <String.au3>

$test = '<""100"" tester=""Things"">Nowhere'
$result = _StringBetween($test, '""', '""')
For $a In $result
    ConsoleWrite($a & @CRLF)
Next

The result you should get is:

100
Things

But in fact what you end up with is:

100
 tester=
Things "	Bug	closed	3.3.11.3	Standard UDFs	3.3.10.2	None	Fixed		
