Uses of Class
edu.rice.cs.plt.text.TextUtil.SplitString

Packages that use TextUtil.SplitString
edu.rice.cs.plt.text Provides support for various manipulations of strings. 
 

Uses of TextUtil.SplitString in edu.rice.cs.plt.text
 

Methods in edu.rice.cs.plt.text that return TextUtil.SplitString
static TextUtil.SplitString TextUtil.split(String s, String delimRegex, Bracket... brackets)
          An extended version of TextUtil.split(java.lang.String, java.lang.String, edu.rice.cs.plt.text.Bracket...) that recognizes nested matched brackets and only splits where the delimiter occurs at the top level.
static TextUtil.SplitString TextUtil.split(String s, String delimRegex, int limit, Bracket... brackets)
          An extended version of TextUtil.split(java.lang.String, java.lang.String, edu.rice.cs.plt.text.Bracket...) that recognizes nested matched brackets and only splits where the delimiter occurs at the top level.
static TextUtil.SplitString TextUtil.splitWithParens(String s, String delimRegex)
          An extended version of TextUtil.split(java.lang.String, java.lang.String, edu.rice.cs.plt.text.Bracket...) that recognizes nested parentheses and only splits where the delimiter occurs at the top level.
static TextUtil.SplitString TextUtil.splitWithParens(String s, String delimRegex, int limit)
          An extended version of TextUtil.split(java.lang.String, java.lang.String, edu.rice.cs.plt.text.Bracket...) that recognizes nested parentheses and only splits where the delimiter occurs at the top level.