@tet-vivi Понял, спасибо
Какой сервис порекомендуете для практики ?
А так я уже делал регер на post/get для сайта vtope
Но там очень легко, любой справится думаю
Заменить от первого символа / до последнего символа /
-
У меня есть строка
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); -
-
This post is deleted!

