- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
def parse_cmd(cmd):
output = []
state = 0
current_arg = ''
prev_c = ''
for c in cmd:
if c == ' ':
if state == 0:
if len(current_arg) > 0:
output += [current_arg]
current_arg = ''
elif state == 1:
current_arg += c
elif c == '"' and prev_c != '\\':
if len(current_arg) > 0 or state == 1:
output += [current_arg]
current_arg = ''
state = int(not state)
else:
current_arg += c
prev_c = c
if len(current_arg) > 0:
output += [current_arg]
return output
guest8 25.05.2019 00:00 # −999
cmepmop 25.05.2019 00:07 # 0
Тому, кто без подглядки в конец кода додуплил, что нужен LocalFree, ничего.
AHCKujlbHblu_netyx 25.05.2019 01:04 # +1
Elvenfighter 25.05.2019 10:18 # +2
Elvenfighter 25.05.2019 10:21 # +1
Elvenfighter 25.05.2019 10:29 # +1
bormand 25.05.2019 11:22 # +1
Rooster 25.05.2019 11:53 # +1
PA3yMHblu_nemyx 25.05.2019 10:37 # +1
Rooster 25.05.2019 11:56 # +2
guest8 13.09.2019 02:57 # −999
TOPT 25.05.2019 15:03 # +3
unicorn 26.05.2019 22:08 # +4
PA3yMHblu_nemyx 26.05.2019 23:43 # +2
guest8 26.05.2019 23:54 # −999
bormand 27.05.2019 00:16 # +1
gost 27.05.2019 00:52 # +1
bormand 27.05.2019 00:54 # +1
gost 27.05.2019 00:57 # +2
TOPT 27.05.2019 15:58 # +1
guest8 13.09.2019 02:58 # −999
PA3yMHblu_nemyx 27.05.2019 01:01 # +2
Хотя где-то здесь пробегала ссылка на генератор котят, но он стрёмный: иногда генерирует котят с тремя глазами или ещё страшнее.
PA3yMHblu_nemyx 27.05.2019 01:03 # +1
TOPT 27.05.2019 02:44 # +1
TOPT 27.05.2019 09:26 # +1
Rooster 27.05.2019 09:31 # +1
3oJIoTou_xyu 27.05.2019 11:37 # +1
3oJIoTou_xyu 27.05.2019 13:13 # +1
Смотрю так на авотарку - одна аватарка, в профиле другая аватарка.
Rooster 27.05.2019 13:58 # +1
TOPT 27.05.2019 15:56 # +1
PA3yMHblu_nemyx 27.05.2019 17:15 # +1
Increment_Excrement 27.05.2019 21:59 # +1
guest8 26.09.2019 10:43 # −999
gost 26.09.2019 11:16 # 0
KaKou-To_xyu 09.12.2019 12:37 # 0