Posts

Showing posts from October, 2015

Retrieve Lines from a string containing multiple lines using StrLine() Function

str strLine(str string, int count) Example: static void strLineExample(Args _arg) { str mytxt = "first-line\nsecond-line\nlast-line"; ; // Prints "second-line". print strLine(mytxt,1); // Prints "last-line". print strLine(mytxt,2); pause; } https://msdn.microsoft.com/en-us/library/aa577258.aspx