JavaScript
- 1 ответ
- 0 вопросов
1
Вклад в тег
const string = ' one two three ';
const result = string.replace(/\s+/g, '-');
// one-two-three
// и не важно, сколько было пробелов, переносов и какого они типа
const result = string.replace(/[-\s_$]+/g, '-');
const words = string.split(/\s+/);
// ['one', 'two', 'three']
// тут можно мат отфильтровать или что-то такое
const title = words.join('-');
// 'one-two-three'