- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 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
function explodeParams(str: string; objDel: char; paramDel: char): ISuperObject;
var
i: Integer;
obj: ISuperObject;
field: string;
value: string;
cuts: string;
newstr: string;
begin
cuts := '';
newstr := '';
for i := 1 to Length(str) do
begin
if str[i] <> objDel then
begin
if str[i] <> paramDel then
begin
cuts := cuts + str[i];
end
else
begin
field := cuts;
cuts := '';
end;
end
else
begin
value := cuts;
if value = '' then
begin
exit;
end;
if field = '' then
begin
exit;
end;
obj := so(['name', field, 'value', StrToInt(value)]);
newstr := newstr + obj.AsString + ',';
cuts := '';
end;
end;
if cuts <> '' then
begin
obj := so(['name', field, 'value', StrToInt(cuts)]);
newstr := newstr + obj.AsString + ',';
end;
newstr := Copy(newstr, 1, Length(newstr) - 1);
Result := so('[' + newstr + ']');
end;
KEKC 26.12.2015 23:32 # 0
И вот это круто:
bormand 27.12.2015 11:00 # 0
CHayT 27.12.2015 11:12 # 0
P.S. lisp с begin/end -- надо подкинуть идею Сатане, вполне годится для наказания грешников
bormand 27.12.2015 11:13 # 0
CHayT 27.12.2015 11:16 # +5
begin let* begin begin a begin b end end end begin a end end
kegdan 27.12.2015 13:57 # 0
bormand 27.12.2015 11:18 # +1
bormand 27.12.2015 11:11 # 0
> Result := so('[' + newstr + ']');
Интересно, а ISuperObject и правда настолько убогий, что может конструироваться только из строки?
Cynicrus 28.12.2015 14:42 # 0