Raised This Month: $32 Target: $400
 8% 

Showing results 1 to 2 of 2
Search took 0.00 seconds.
Search: Posts Made By: headline
Forum: Scripting 05-20-2018, 20:46
Replies: 4
Views: 1,932
Posted By headline
Re: Case Insensitive StringMap.GetString

don't do repeated calls to CharToLower and assume that every char is a multi-byte character


char[] str = "test";
int len = strlen(str);
int bytes = 0;
for (int i = 0; i < len; i++)
{
...
Forum: Scripting 05-20-2018, 01:52
Replies: 4
Views: 1,932
Posted By headline
Re: Case Insensitive StringMap.GetString

don't do repeated calls to ReplaceString to just handle lowercase-ing your string.


char[] str = "test";
for (int i = 0; i < strlen(str); i++)
{
str[i] = CharToLower(str[i]);
}
Showing results 1 to 2 of 2

 
Forum Jump

All times are GMT -4. The time now is 11:31.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode