Posts by Thiago Hencke • 113 points
3 posts
-
2
votes3
answers199
viewsQ: How to make a look-Behind using quantifiers such as the " d+"?
I need to match the "test" text, but the string will not always start with a fixed number of characters/digits, it may start with any number of characters, example: 001 test 0002 test 20458 test How…
regexasked Thiago Hencke 113 -
-1
votes1
answer394
viewsQ: How do I view the details of an ASP.net Session on IIS like in Java using Tomcat?
In the Tomcat manager, we have to list open sessions and see the "details" of each one, including see a list of all session variables (key-value) of that session, as shown in the example image…
-
9
votes1
answer84
viewsQ: How to use "and" on CSS3 selectors?
I am trying to select only inputs whose class starts with "btn_" and which also have type="button". Example: input[type="button"] **&&** [class^="btn_"] It is possible to do this?…