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!
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 July 2026
Contest runs July 1 - 31. Complete challenges to climb the leaderboard!
Only the 31 daily challenges shown during this contest count toward points. Earlier dailies don't carry over.