Posts by Artur França • 21 points
3 posts
-
-1
votes2
answers160
viewsA: How to search accentuated text, upper case, and minuscule text with html and javascript?
Searches are pumping (working) only in p tags, arrow to your H2 too. It must be something like that: $("#textFind").keyup(function(){ var stringPesquisa = $(this).val(); $('p').parent().hide();…
-
-4
votes1
answer349
viewsA: What is & no printf in C for?
& You use in the scanf and not in the printf, it is to indicate that you will touch a memory location.
canswered Artur França 21 -
2
votes2
answers790
viewsQ: Check with REGEX VBA if phone is fixed or mobile (checking 3rd number in regex)
I have to do a REGEX VBA that check the phone number in this pattern, I thought I would try to identify the 3rd number and check if it is different from 9 or 8, getting like this: Cellular…