logo
Devtools
Modules
Cool snippets for everyday use.
Slugger Demo
to slugify strings

Before

Aaron James
Christopher Neal

After

aaron-james
christopher-neal
Strip Tags
strips html tags

Before

<!DOCTYPE html>  
  <html>  
  <head>  
  <title>This is the title</title>  
</head>  
<body>  
  <p>This is the content.</p>
</body>  
</html>

After

This is the title This is the content.
Remove Duplicates
removes duplicate entries by line

Before

lion
dog
dog
dog

After

lion
dog
Extract Links
extracts http(s) links from a string

Before

<?xml version="1.0" encoding="UTF-8"?>
  <urlset>
    <url>
      <loc>https://example.com/</loc>
    </url>
    <url>
      <loc>https://domain.com/</loc>
    </url>
  </urlset>

After

https://example.com/
https://domain.com/
Count Duplicates
counts duplicate entries by line

Before

word
tool
word
tool
word

After

3: word
2: tool
Random Password
generates a random password

Setting

Numbers of chars: 16

Output

Jq8I7L0S69J@glhT