2 // This software is now distributed according to
3 // the Lesser Gnu Public License. Please see
4 // http://www.gnu.org/copyleft/lesser.txt for
8 package com.stevesoft.pat;
11 * The apply(StringBufferLike sb,RegRes res) method of this derivation of
12 * ReplaceRule appends the contents of res.left() to the StringBuffer sb.
14 * @see com.stevesoft.pat.ReplaceRule
16 public class LeftRule extends ReplaceRule
22 public void apply(StringBufferLike sb, RegRes res)
24 sb.append(res.left());
27 public String toString1()