$str.rightfromfirst

Returns the right part of a string from the first ocurrence of a given substring
Usage
$str.rightfromfirst(<string>,<substring>[,<case>])
Description
This function returns the right part of the string given as the first parameter from the position where the first ocurrence of the string given as the second parameter is found. It doesn't include the substring of the second parameter in the returned value. If the second parameter is not found, an empty string is returned. If the third parameter is set to true, then the search is case sensitive; it defaults to false.
Syntax Specification
<string> $str.rightfromfirst(<string:string>,<substring:string>[,<case:bool>])
Examples

    %test = "Hello! My nickname is Pragma, my name is Szymon"
    echo $str.rightfromfirst(%test, my);        //  " nickname is Pragma, my name is Szymon"
    echo $str.rightfromfirst(%test, my, true);    //  " name is Szymon"


Index, Functions
KVIrc 4.2.0.6190 Documentation
Generated by builduser at Thu May 18 22:40:02 2017