Convert a given string to a URL-friendly slug format. The slug should be lowercase, use hyphens instead of spaces, remove all non-alphanumeric characters except hyphens, replace multiple consecutive hyphens with a single hyphen, and remove leading and trailing hyphens. Return null for null input and empty string for empty input.

Examples:

Input: str = 'Hello World' Output: 'hello-world' Explanation: Convert to lowercase and replace space with hyphen Input: str = ' JavaScript 101! ' Output: 'javascript-101' Explanation: Trim spaces, remove special characters, convert to lowercase Input: str = 'What''s Up?' Output: 'whats-up' Explanation: Remove apostrophe and question mark, convert to lowercase Input: str = null Output: null Explanation: Return null for null input Input: str = '' Output: '' Explanation: Return empty string for empty input
Apex Code Editor

Welcome to Lightning Challenge!

Create an Account

Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.

Create account

How It Works

  • • Write your solution in the code editor
  • • Connect your Salesforce org to test
  • • Submit to check if your solution passes
  • • Use hints if you get stuck

Contest Alert

🏆 #CodeEveryDay Feb 2026

Contest runs February 1 - 28. Complete challenges to climb the leaderboard!

Points are calculated for challenges completed during the contest period.