Skip to content

Commit

Permalink
Фикс разбора параметра-массива в CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
Bayselonarrend committed Mar 22, 2024
1 parent 83fa0ca commit 1ec1fa2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions cli/tools/Modules/ОбработкаПараметров.os
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

Процедура ОбработатьПараметрТекст(Значение)

Файл = Новый Файл(Значение);
Файл = Новый Файл(Значение);

Если Файл.Существует() Тогда
ЧтениеТекста = Новый ЧтениеТекста(Значение);
Expand All @@ -59,8 +59,11 @@

Значение = СтрЗаменить(Значение, "['", "");
Значение = СтрЗаменить(Значение, "']", "");
Значение = СтрЗаменить(Значение, "', '", "','");
Значение = СтрЗаменить(Значение, "' , '", "','");
Значение = СтрЗаменить(Значение, "' ,'", "','");

Значение = СтрРазделить(Значение, "','");
Значение = СтрРазделить(Значение, "','", Ложь);

Для Н = 0 По Значение.ВГраница() Цикл
Значение[Н] = СокрЛП(Значение[Н]);
Expand Down

0 comments on commit 1ec1fa2

Please sign in to comment.