ApiParser.XPath.Resolve C# (CSharp) Method

Resolve() private method

private Resolve ( [ xpath ) : string
xpath [
return string
        public static string Resolve([NotNull] string xpath)
        {
            xpath = IdRegex.Replace(xpath, "$1$2[@id='$3']");
            xpath = ClassRegex.Replace(xpath, TranslateClass);
            return xpath.Replace("][", " and ");
        }