I have the code of a function that should fit space in the sentence, but it is not working.
I would like to do with user's input in the same way that the remove function works.
Suppose I have the following sentence:
input: meu codigo em C para ajustar espaços
.
The return should be: meu codigo em C para ajustar espaços
.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void rSpace(char *string)
{
int i = 0, j = 0;
int tam = strlen(string);
for(i = 0; i < tam; i++)
{
if(string[i] != ' ') {
string[j] = string[i];
j++;
}
}
string[j] = '#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void rSpace(char *string)
{
int i = 0, j = 0;
int tam = strlen(string);
for(i = 0; i < tam; i++)
{
if(string[i] != ' ') {
string[j] = string[i];
j++;
}
}
string[j] = '%pre%';
}
void jSpace(char *string)
{
char blank[1000];
int c = 0, d = 0;
while(string[c] != '%pre%')
{
if (string[c] == ' ')
{
int temp = c + 1;
if (string[temp] != '%pre%')
{
while (string[temp] == ' ' && string[temp] != '%pre%')
{
if (string[temp] == ' ')
{
c++;
}
temp++;
}
}
}
blank[d] = string[c];
c++;
d++;
}
blank[d] = '%pre%';
}
int main()
{
//char frase[200] = "minha frase com algums espaços";
//rSpace(frase); //output: minhafrasecomalgumsespaços OK
//printf("%s\n", frase);
char frase2[200] = "minha frase com algums espaços";
//output: minha frase com algums espaços //ERRO não esta validando ajustes no espaço
jSpace(frase2);
printf("%s\n", frase2);
return 0;
}
';
}
void jSpace(char *string)
{
char blank[1000];
int c = 0, d = 0;
while(string[c] != '%pre%')
{
if (string[c] == ' ')
{
int temp = c + 1;
if (string[temp] != '%pre%')
{
while (string[temp] == ' ' && string[temp] != '%pre%')
{
if (string[temp] == ' ')
{
c++;
}
temp++;
}
}
}
blank[d] = string[c];
c++;
d++;
}
blank[d] = '%pre%';
}
int main()
{
//char frase[200] = "minha frase com algums espaços";
//rSpace(frase); //output: minhafrasecomalgumsespaços OK
//printf("%s\n", frase);
char frase2[200] = "minha frase com algums espaços";
//output: minha frase com algums espaços //ERRO não esta validando ajustes no espaço
jSpace(frase2);
printf("%s\n", frase2);
return 0;
}