Returns string from given tag/delimiter
#include "String and File String.au3" _StringFromLastTag( $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 last given tag, if tag not found according to $NotFound |
_StringFromLastTag( "string 1<tag>string 2<tag>last string", "<tag>" ) ; "last string"
_StringFromLastTag( "first element,second element,last element", "," ) ; "last element"