Example #1
0
 public int Find(string find, string final = null, bool permiteof = false)
 {
     return(Find(ISO88591.GetBytes(find), final == null ? null : ISO88591.GetBytes(final), permiteof));
 }
Example #2
0
 public int Skip(string skip, bool permiteof = false)
 {
     return(Skip(ISO88591.GetBytes(skip), permiteof));
 }
Example #3
0
 public int FindAny(string find, bool permiteof = false)
 {
     return(FindAny(ISO88591.GetBytes(find), permiteof));
 }