如何在 JavaScript 变量中存储、检索和处理 XML 内容?

发布于 2024-12-16 22:40:01 字数 191 浏览 1 评论 0原文

我想在 JavaScript 中对某些 XML 内容执行正则表达式匹配。

  1. 我们如何将 XML 内容存储在 JavaScript 变量中?
  2. 从 JavaScript 变量检索 XML 内容以执行正则表达式匹配的有效方法有哪些?
  3. 注意:请建议适用于所有浏览器的代码片段。

桑吉斯

I would like to perform a regex match on some XML content in JavaScript.

  1. How do we store XML contents in a JavaScript variable?
  2. What are the effective ways to retrieve the XML content from a JavaScript variable to perform a regex match?
  3. Note: Please suggest code snippets that works in all the browsers.

Sangeeth

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

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

发布评论

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

评论(2

谎言月老 2024-12-23 22:40:01

对于解析 XML 来说,正则表达式通常不是一个好主意。

这是使用 jQuery 的解决方案: JavaScript 中变量字符串的 XML 解析

Regex is generally a bad idea for parsing XML.

Here is a solution using jQuery : XML parsing of a variable string in JavaScript

意中人 2024-12-23 22:40:01

我们如何将 XML 内容存储在 JavaScript 变量中?

这取决于您从哪里获取 XML。如果您通过 HTTP 获取它,那么 XMLHttpRequest 将为您创建一个 XML 对象(在 obj.responseXML 中)。如果您将标记嵌入到字符串中,那么我相信 DOMParser 得到了很好的支持(并且与Microsoft 领域的 MSXML.DOMDocument)

从 JavaScript 变量检索 XML 内容的有效方法是什么

从 JavaScript 变量DOM 和 XPath

执行正则表达式匹配?

我希望您的意思是“对从 XML 中提取的文本执行正则表达式匹配”。正则表达式对于解析 XML 来说是一个非常糟糕的工具。

How do we store XML contents in a JavaScript variable?

That depends on where you are getting the XML from. If you get fetching it over HTTP, then XMLHttpRequest will create an XML object for you (in obj.responseXML). If you are embedded the markup in a string then I believe DOMParser is fairly well supported (and pairs with MSXML.DOMDocument in Microsoft-land)

What are the effective ways to retrieve the XML content from a JavaScript variable

DOM and XPath

to perform a regex match?

I hope you mean "to perform a regex match on text extracted from the XML". Regular expressions are a very poor tool for parsing XML.

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