Given I have
div#my_id_1
div#my_id_2
div#my_id_3
How do I write a CSS selector that matches all div
s with id my_id_n
?
With regex if I want to match my_id_n
I can do /my_id_\d+/
to match my_id_n
. What's the equivalent here?
Given I have
div#my_id_1
div#my_id_2
div#my_id_3
How do I write a CSS selector that matches all div
s with id my_id_n
?
With regex if I want to match my_id_n
I can do /my_id_\d+/
to match my_id_n
. What's the equivalent here?