package com.juick.www.util; /** * Created by vitalyster on 09.12.2016. */ public class EncodeUtils { public static String encodeSphinx(String str) { return str.replaceAll("@", "\\\\@"); } }