Home » U++ Library support » U++ Core » String w/high characters but not UTF?
Re: String w/high characters but not UTF? [message #27906 is a reply to message #27902] |
Tue, 10 August 2010 14:29   |
jeremy_c
Messages: 175 Registered: August 2007 Location: Ohio, USA
|
Experienced Member |
|
|
When I parse the data. I create a small U++ app that shows what my problem is:
#include <Core/Core.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
char data[] = { 65, 65, 65, 181, 65, 65, 65, 182, 65, 65, 183 };
String d(data);
for (int i=0; i < d.GetCount(); i++) {
LOG(FormatInt(i) + "=" + FormatInt(d[i]));
}
}
Thanks for any help with this. I'm sure it's simple but it's driving me nuts! 
Jeremy
|
|
|
Goto Forum:
Current Time: Mon Jul 14 17:17:25 CEST 2025
Total time taken to generate the page: 0.03621 seconds
|