텍스트 도구
URL 추출기
텍스트에서 모든 URL과 링크를 즉시 추출합니다. 중복 제거·알파벳 정렬 후 클릭 한 번으로 복사할 수 있습니다.
u.replace(/[.,;!?)\]>]+$/, ''));
if(this.dedup) found = [...new Set(found)];
if(this.sort) found.sort();
return found;
},
copy() { navigator.clipboard.writeText(this.urls.join('\n')); },
clear() { this.input = ''; }
}">