Returns string to last found given tag/delimiter
| #include "String and File String.au3" _StringToLastTag( $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 to last given tag, if tag not found according to $NotFound |
_StringLastToTag( "string 1<tag>string 2<tag>string 3", "<tag>" ) ; "string1<tag>string 2"
_StringLastToTag( "string 1,string 2,string 3", "," ) ; "string1,string2"