Here is a sample string I got off a socket stream.
\033[H\033[J\033[1;30HSUPERVISOR MAIN MENU\033[6;5H 0. Exit Exit\033[7;5H 1. Help Display help\033[8;5H 2. Control Calling lists and users\033[9;5H 3. Campaign Campaigns\033[10;5H 4. Manage
If you want to see the output I expect open a unix/linux shell, type echo -e followed by a space followed by the above string in single quotes and hit Enter key. The output appears something like:
SUPERVISOR MAIN MENU
0. Exit Exit
1. Help Display help
2. Control Calling lists and users
3. Campaign Campaigns
4. Manage
I want the same output except it should be in memory...I require to work with it later...any ideas.