JavaScript / Html Pl/sql 验证器。

发布于 2025-01-06 13:13:48 字数 133 浏览 1 评论 0原文

我正在创建一个应用程序,用户可以在其中输入 html / Javascript 和 PL/SQL 代码,这些代码将存储在数据库中。我想在将这些语言存储到数据库之前验证它们的语法。 我在该应用程序中使用 C# 语言。 我想知道是否有任何库可以用来实现

I am creating an application where the user can enter html / Javascript and PL/SQL code, which will be stored in the Database. I want to validate the syntax for this languages before storing them in the database.
I am using C# language for the application.
I would like to know if there is any library that i can use to acheive

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野鹿林 2025-01-13 13:13:48

我刚刚遇到了 Irony,它将自己定义为“.NET 语言实现工具包”。效果真的很棒。不过,我将它用于更简单的任务:将用户搜索转换为 SQL-Server CONTAINS 兼容表达式,如 这篇文章(这可能是理解 Irony 功能的一个很好的起点)。

以下是他们在 Codeplex 上的项目描述:

Irony是一个用于在.NET平台上实现语言的开发工具包。与大多数现有的 yacc/lex 风格的解决方案不同,Irony 不使用任何扫描器或解析器从用专门的元语言编写的语法规范生成代码。在 Irony 中,目标语言语法直接用 C# 编码,使用运算符重载来表达语法结构。 Irony 的扫描器和解析器模块使用编码为 c# 类的语法来控制解析过程。

因此,它是“正式”的语言实现工具,但您完全可以将它用于语法验证。

I just came across Irony, which defines itself as a ".NET Language Implementation Kit". It works really great. I used it for a simpler task, though: converting user searches into a SQL-Server CONTAINS-compatible expressions, as described in this article (which may be a good starting point to understand what Irony does).

Here is their project description on Codeplex:

Irony is a development kit for implementing languages on .NET platform. Unlike most existing yacc/lex-style solutions Irony does not employ any scanner or parser code generation from grammar specifications written in a specialized meta-language. In Irony the target language grammar is coded directly in c# using operator overloading to express grammar constructs. Irony's scanner and parser modules use the grammar encoded as c# class to control the parsing process.

So, it's "officially" a tool for language implementation, but you can totally use it just for syntax validation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文