Configuration

1
Console Output
>

String Transformation

Original String
The quick brown fox jumps over the lazy dog. The fox is quick.
Method Type
replace()
Result
The quick brown cat jumps over the lazy dog. The fox is quick.
Occurrences Found:2
Replacements Made:2 / 2
Method Comparison

replace(): Replaces the first occurrence of searchValue with newValue in a string.

replaceAll(): Replaces all occurrences of searchValue with newValue in a string.