Match() problem
in
Programming Questions
•
6 months ago
Maybe I'm wrong but when I just try this
- void setup()
- {
- String h="<span class=\"wotd-widget-sentence-main-space-text\" style=\"color: rgb(0, 172, 237);\">INFORMATION</span>";
- String[] j=match(h,"<span class=\"wotd-widget-sentence-main-space-text\" style=\"color: rgb(0, 172, 237);\">(.*?)</span>");
- println(j);
- }
Does it not work with too long tags ?
1