Example usage for org.apache.commons.text StrMatcher spaceMatcher

List of usage examples for org.apache.commons.text StrMatcher spaceMatcher

Introduction

In this page you can find the example usage for org.apache.commons.text StrMatcher spaceMatcher.

Prototype

public static StrMatcher spaceMatcher() 

Source Link

Document

Returns a matcher which matches the space character.

Usage

From source file:com.twosigma.beakerx.kernel.magic.command.functionality.MagicCommandUtils.java

public static String[] splitPath(String command) {
    StrTokenizer tokenizer = new StrTokenizer(command, StrMatcher.spaceMatcher(), StrMatcher.quoteMatcher());
    return tokenizer.getTokenArray();
}