blob: a444ec4d0a5ae863196eaf88d0409383e58d59c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package com.juick.www.util;
/**
* Created by vitalyster on 09.12.2016.
*/
public class EncodeUtils {
public static String encodeSphinx(String str) {
return str.replaceAll("@", "\\\\@");
}
}
|