예제 #1
0
 internal static string matchSinglePrefixedField(string prefix, string rawText, char endChar, bool trim)
 {
     string[] array = ResultParser.matchPrefixedField(prefix, rawText, endChar, trim);
     if (array != null)
     {
         return(array[0]);
     }
     return(null);
 }
 internal static string[] matchDoCoMoPrefixedField(string prefix, string rawText, bool trim)
 {
     return(ResultParser.matchPrefixedField(prefix, rawText, ';', trim));
 }