@UserTrue said in Версия протокола http/2. Поддерживается?:
Почему, http клиент тоже http2 поддерживает
Прикольно, считал, что нет. Но я им не и пользовался толком, теперь знаю, спасибо.
У меня есть строка
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);