Home

Monday, March 10, 2014

Text buffer class Example

static void TxtB(Args _args)
{

TextBuffer buffer;
str vlu;
;

vlu = "somendra.Pratap.singh";
   
buffer = new TextBuffer();
buffer.setText(vlu);

while (buffer.nextToken(0, '.'))
{

info (buffer.token());

}
}
output:  Somendra
             pratap
             singh
             

No comments:

Post a Comment