Try using "Template" action and construct your text with hyerlinks than paste it to page.
Other option is to create simple LOCAL html page somewhere on your hard disk with
desired text and links, than open that local html page in another tab in BAS and than copy
from that tab to the tab where you are working.
Удалить повторяющиеся значения в списке
-
@Kinokio said in Удалить повторяющиеся значения в списке:
Мне не просто нужно удалить дубли, а в целом удалить значения которые повторяются.
Например список:Значение1 Два Три Gznm Значение1Должно получиться так:
Два Три GznmКак я могу это сделать?
Можете использовать метод "filter()"
[[ARR]] = ["Значение1", "Два", "Три", "Gznm", "Значение1"] [[FILTERED_ARR]] = [[ARR]].filter(function (value, index, array) { return array.indexOf(value) === array.lastIndexOf(value) }) log([[FILTERED_ARR]])