-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpra3-02.c
90 lines (85 loc) · 1.41 KB
/
pra3-02.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#include <stdio.h>
void escape(char s[], char t[]);
void escape2(char s[], char t[]);
void pstr(char s[]);
int main (int argc, char const *argv[])
{
char s[100];
char t[100] = "ab\\scd\\tedsa\\nds\\tadf";
//pstr(t);
escape2(s, t);
printf("%s\n", s);
return 0;
}
void escape(char s[], char t[])
{
int i, j;
i = j = 0;
while(t[i]!='\0')
{
switch (t[i]){
case '\t':
s[j++] = '{';
s[j++] = '\\';
s[j++] = 't';
s[j++] = '}';
++i;
break;
case ' ':
s[j++] = '{';
s[j++] = '\\';
s[j++] = 's';
s[j++] = '}';
++i;
break;
case '\n':
s[j++] = '{';
s[j++] = '\\';
s[j++] = 'n';
s[j++] = '}';
++i;
break;
default:
s[j++] = t[i++];
break;
}
}
s[j] = '\0';
}
void escape2(char s[], char t[])
{
int i, j;
i = j = 0;
while(t[i]!='\0')
{
if (t[i] == '\\')
{
switch(t[++i])
{
case 't':
s[j++] = '\t';
++i;
break;
case 's':
s[j++] = ' ';
++i;
break;
case 'n':
s[j++] = '\n';
++i;
break;
default:
break;
}
}
else
s[j++] = t[i++];
}
s[j] = '\0';
}
void pstr(char s[]){
int i = 0;
while(s[i]!='\0')
printf("%c", s[i++]);
printf("%d\n", i);
}