-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuncomment.py
80 lines (66 loc) · 2.04 KB
/
uncomment.py
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
def uncomment(s):
result = ""
length = len(s)
i = 0
def is_multiple_init():
if s[i] == "[":
j = 1
while s[i+j] == "=":
j += 1
if s[i+j] == "[":
return True, j+1
return False, None
def is_multiple_end(l):
if s[i] == "]":
j = 1
while s[i+j] == "=":
j += 1
if s[i+j] == "]":
return j+1 == l
return False
while i < length:
char = s[i]
# check if starting of any time of string
if char == "\"":
result += s[i]
while s[i+1] != "\"":
i += 1
result += s[i]
i += 1
elif char == "'":
result += s[i]
while s[i+1] != "'":
i += 1
result += s[i]
i += 1
elif char == "[":
is_multiple, mul_length = is_multiple_init()
result += s[i:i+mul_length]
i += mul_length
while i < length and not is_multiple_end(mul_length):
result += s[i]
i += 1
result += s[i:i+mul_length]
i += mul_length
# check if starting of any type of comment
elif char == "-":
# check if it is really a comment
if s[i+1] == "-":
i += 2
# check if multiline
is_multiple, mul_length = is_multiple_init()
if is_multiple:
i += mul_length
while i < length and not is_multiple_end(mul_length):
i += 1
i += mul_length
else:
j = 1
while i+j < length and s[i+j] != "\n":
j += 1
i = i+j
# print("char", char)
if i < length:
result += s[i]
i += 1
return result