Skip to content

Latest commit

 

History

History

14_URLify

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

URLify

What You'll Do

Create a function called urlify which takes in a blog title and outputs a url-friendly string where each word is lowercase and spaces are replaced with hyphens. Remember to remove all apostrophes.

("How I Got Into Programming!!!") => "how-i-got-into-programming"

Requirements

  • String manipulation

Output

how-i-got-into-programming