Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for utility (0.03 sec)

  1. KuromojiCSVUtil.java

    L31: * See the License for the specific language governing permissions and L32: * limitations under the License. L33: */ L34: L35:import java.util.ArrayList; L36:import java.util.regex.Matcher; L37:import java.util.regex.Pattern; L38: L39:/** L40: * Utility class for parsing CSV text L41: */ L42:public final class KuromojiCSVUtil { L43: private static final char QUOTE = '"'; L44: L45: private static final char COMMA = ','; L46: L47: private static final Pattern QUOTE_REPLACE_PATTERN = Patte...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.9K bytes
Back to top