1 | // tok must come from htmlTok |
2 | // returns all container tags found (including content) as CNC |
3 | // should be OK for both HTML and XML |
4 | static LL<S> findContainerTag(L<S> tok, S tag) { |
5 | new LL<S> l; |
6 | for (int i = 1; i < l(tok); i += 2) |
7 | if (isOpeningTag(tok.get(i), tag)) { |
8 | int j, level = 1; |
9 | for (j = i+2; j < tok.size(); j += 2) |
10 | if (isOpeningTag(tok.get(j), tag)) |
11 | ++level; |
12 | else if (isTag(tok.get(j), "/" + tag)) { |
13 | --level; |
14 | if (level == 0) { |
15 | l.add(subList(tok, i-1, j+2)); // actual CNC |
16 | break; |
17 | } |
18 | } |
19 | i = j; |
20 | } |
21 | ret l; |
22 | } |
23 | |
24 | static LL<S> findContainerTag(S html, S tag) { |
25 | ret findContainerTag(htmlTok(html), tag); |
26 | } |
download show line numbers debug dex old transpilations
Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1002309 |
Snippet name: | findContainerTag - HTML/XML parsing, fixed tag name |
Eternal ID of this version: | #1002309/5 |
Text MD5: | d7a992bd617145ec5928d2480beec6a4 |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2021-07-24 03:12:23 |
Source code size: | 748 bytes / 26 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 835 / 1068 |
Version history: | 4 change(s) |
Referenced in: | [show references] |