1Apache Camel is a rule-based routing and mediation engine which provides a Java object based implementation of the Enterprise Integration
1import java.util.Arrays;
2
3class Solution {
4 public static String camelCase(String input) {
5 return input.replaceAll("([A-Z])", " $1");
6 }
7}