/// <summary> /// Runs regular expression on the input (see: <see cref="regex_FieldAndIOMatch"/>) /// </summary> /// <remarks> /// though not support yet, the regular expression is designed to support /// ‘(Table|FIeld|Directory|File)\w*’ input /// </remarks> /// <param name="input">the text sent to the regular expression query.</param> /// <returns> /// The regular expression matches. /// </returns> static public MatchCollection ListTagsAndFiles(string input) { return(ParseUtil.Match(regex_FieldAndIOMatch, input)); }
static public MatchCollection ListTags(string input) { return(ParseUtil.Match(regex_fieldMatch, input)); }