You can use Textbuffer in Axapta x++ as below example. Thanks for visit.
TextBuffer buffer;
str source;
;
source = "Showing text buffer sample";
buffer = new TextBuffer();
buffer.setText(source);
while (buffer.nextToken(0, '.'))
{
info (buffer.token());
}
Comments