Given a string and a replacement character, replace all vowels (a, e, i, o, u - both uppercase and lowercase) with the replacement character. Return null for null input and empty string for empty input.

Examples:

Input: str = 'hello', replacement = '*' Output: 'h*ll*' Explanation: e and o are vowels, replaced with * Input: str = 'APPLE', replacement = '#' Output: '#PPL#' Explanation: A and E are uppercase vowels, replaced with # Input: str = 'gym', replacement = '-' Output: 'gym' Explanation: No vowels found, string unchanged Input: str = null, replacement = '*' Output: null Explanation: Null input returns null Input: str = '', replacement = '*' Output: '' Explanation: Empty string returns empty string
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 Mar/April 2026

Contest runs March 3 - April 30. Complete challenges to climb the leaderboard!

Points are calculated for challenges completed during the contest period.