繁体   English   中英

如何使用javascript获取字符串中重复的DYNAMIC html标签之间的字符串? (没有正则表达式,除非它是唯一的方法!)

[英]How can I get the string between repeated DYNAMIC html tags in a string using javascript? (No regex unless its the only way!)

作为解释的一种方式,我没有发布我拥有的巨大字符串(其中包含动态 html 标签并使用唯一 id 自动生成)。 我想使用任何 excep Regex来获取每个标记之间的文本"<p class=partial_entry>... comment...</p>" ,在我的情况下,通过获取 20 个重复标记的字符串外部HTML。 我在下面有一个例子:

var str = "<div class=prw_rup prw_reviews_text_summary_hsx data-prwidget-name=reviews_text_summary_hsx data-prwidget-init=handlers>
<div class=entry><p class=partial_entry>You have to try their special sushi rolls like acevichado or patrullero. They have great selections of sushi and other dishes.</p>
</div></div><div class=prw_rup prw_reviews_text_summary_hsx data-prwidget-name=reviews_text_summary_hsx data-prwidget-init=handlers><div class=entry><p class=partial_entry>
All you can eat sushi fir $20 ($24 including tax)! Christian, our server, was wonderful and attentive.
</p></div></div><div class=prw_rup prw_reviews_text_summary_hsx data-prwidget-name=reviews_text_summary_hsx data-prwidget-init=handlers>
<div class=entry><p class=partial_entry>The place was good, also the waiters, but definitely sushi is the best in town 
for my opinion, even with the few options of it in this place. I will be there soon again.</p></div></div>";

我想要的是我在示例中的 3 条评论,所以我使用了 20 条代码:

- You have to try their special sushi rolls like acevichado or patrullero. They have great selections of sushi and other dishes.

- All you can eat sushi fir $20 ($24 including tax)! Christian, our server, was wonderful and attentive.

- The place was good, also the waiters, but definitely sushi is the best in town for my opinion, even with the few options of it in this place. I will be there soon again.

我尝试制作自己的代码,但中间的文本或标签没有被删除,因为它检测到我预设的标签,例如: "THE WHOLE STRING AFTER THE TAG IM LOOKING FOR + <p class=partial_entry>... comment...</p>"整个"THE WHOLE STRING AFTER THE TAG IM LOOKING FOR + <p class=partial_entry>... comment...</p>"而我只想要...comment...部分。

我制作的代码如下:

var temp = "<p class=partial_entry";
    var res = str.split('>');
    var res2 = res.indexOf(temp) + 1;
    var resultado = null;
    
     if (res2 < res.length && res2 != -1) {
         resultado = res[ res2 ]; // gets the next one
    }
    
    alert(resultado);

这非常简单,假设评论将始终包含在具有partial_entry类的节点中:

var commentNodes = document.getElementsByClassName('partial_entry');
var comments = [];
for (var i = 0; i < commentNodes.length; i++) {
  comments.push(commentNodes[i].innerText);
}

您可以使用 for 循环遍历每个字符直到它看到,然后存储每个字符直到它看到

这可能不是最好的方法,如果 p 中有其他标签,它也不会起作用。 但它有效。

 var text = "<p class=partial_entry>This text should show up</p>" var seenBeginTag = false; var seenEndTag = false; var output = []; for (var i = 0; i < text.length; i++) { if (seenBeginTag && seenEndTag) { if (text[i] == '<') { seenBeginTag = false; seenEndTag = false; } else { output.push(text[i]); } } else if (seenBeginTag) { if (text[i] == '>') { seenEndTag = true; } } else if (text[i] == '<') { if (text[i+1] == 'p') { seenBeginTag = true; } } } console.log(output.join(''));

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM