xóa kí tự trắng trong chuỗi
// xóa kí tự trắng trong chuỗi
#include "stdio.h"
#include "conio.h"
#include "string.h"
void xoak(char *s, int k)
{
for (int i = k; i < strlen(s) - 1;i++)
s[i] = s[i + 1];
s[strlen(s) - 1] = '\NULL';
}
void xoa(char *s)
{
while (s[0] == ' ')xoak(s, 0);
while (s[strlen(s) - 1] == ' ')
xoak(s, strlen(s) - 1);
for (int i = 0; i < strlen(s) - 1;i++)
if (s[i] == ' '&&s[i + 1] == ' ')
{
xoak(s, i); i--;
}
}
void main() {
char s[255]; printf("nhap chuoi: ");
fflush(stdin);
gets_s(s);
xoa(s);
puts(s);
}
Created at 12/12/14,14:35:38
<< Bài Viết Khác
UNDER MAINTENANCE