JavaScript / Html Pl/sql 验证器。
我正在创建一个应用程序,用户可以在其中输入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚遇到了 Irony,它将自己定义为“.NET 语言实现工具包”。效果真的很棒。不过,我将它用于更简单的任务:将用户搜索转换为 SQL-Server CONTAINS 兼容表达式,如 这篇文章(这可能是理解 Irony 功能的一个很好的起点)。
以下是他们在 Codeplex 上的项目描述:
因此,它是“正式”的语言实现工具,但您完全可以将它用于语法验证。
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:
So, it's "officially" a tool for language implementation, but you can totally use it just for syntax validation.