/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.search.impl.util;
public class GlobPatternUtil {
public static String convertWildcardToRegex(String term) {
return term.replaceAll("[.]", "[$0]").replaceAll("[*]", ".*").replaceAll("[?]", ".");
}
}