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
This is the information that I was looking for.. Thanks for the efforts you put to gather such a nice content and posted here.
ReplyDeleteMicrosoft Dynamics AX Training|Microsoft Dynamics AX Online
Training