Returns string from given tag/delimiter
#include "String and File String.au3" _StringFromTag( $sString, $sTag [, $bNotFound = True [, $bCaseSensitive = False]] ) |
$sString | String with given tag |
$sTag | Tag/delimiter |
$bNotFound | True = Return $String if not found, False = return empty string |
$bCaseSensitive | False = Case insensitive, True = Case sensitive |
string value | String from given tag, if tag not found according to $NotFound |
_StringFromTag( "string before tag</tag>string behind tag", "</tag>" ) ; "string behind tag"
_StringFromTag( "first element,second element", "," ) ; "second element"