//-------------------------------
// 先頭空白削除
//-------------------------------
void Trim2(char *tmp)
{
int i;
int count = 0;
if ( tmp == NULL )
{
return;
}
//文字列長を取得する
count = strlen(tmp);
// 先頭から順に空白でない位置を探す
i = 0;
while ( tmp[i] != '\0' && tmp[i] == ' ' )
i++;
if(i < count)
strcpy_s(tmp,count - i+1, &tmp[i]);
return;
}
投票数:102
平均点:8.04
文字列末尾空白削除 |
汎用関数 |
16進数(*char)を10進数(int)に変換 |