@rdbltz А вот сейчас обидно было...
@DoctorKrolic said in log:pass брать логин до :, а пароль после ::
@rdbltz Инструменты -> Парсить строку
У меня есть строка
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);