@facebyk said in Парсить файлы от большего к меньшему:
dir /O:sНагружать систему разными обходами не желательно) Может есть какое-то легкое решение?
Спасибо всем за помощь)
У меня есть строка
index.com/apps/index/:UNKNOWN:test
Нужно чтобы она превратилась в
index.com:UNKNOWN:test
@joeyyates7352 Replace
/apps/index/
на
пусто
You can use javascript to do complex stuff.
// Input string
const inputString = "index.com/apps/index/:UNKNOWN:test";
// Define a regular expression pattern to match the unwanted parts
const pattern = /\/apps\/index\/:([^/]+):([^/]+)/;
// Use the replace method to remove the unwanted parts
const resultString = inputString.replace(pattern, ' :$1:$2');
console.log(resultString);