We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
| '\\/')
http://shex.io/shex-semantics/#term-PASSED_TOKENS says (see table at bottom 'cause markdown is being weird).
Demo'd using PCRE as implemented in node javascript:
> console.log("ab/*c*\\/d*/ef") ab/*c*\/d*/ef undefined > "ab/*c*\\/d*/ef".match(/\/\*((?:[^*]|\*[^/])*)\*\//) [ '/*c*\\/d*/', 'c*\\/d', index: 2, input: 'ab/*c*\\/d*/ef', groups: undefined ]
[ \t\r\n]+ | "#" [^\r\n]* | "/*" ([^*] | '*' ([^/] | '\\/'))* "*/"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
http://shex.io/shex-semantics/#term-PASSED_TOKENS says (see table at bottom 'cause markdown is being weird).
On the last line, this clause is not needed: `| '\\/')`.Demo'd using PCRE as implemented in node javascript:
The text was updated successfully, but these errors were encountered: