Posts by Alberto Vitoriano • 23 points
3 posts
-
1
votes5
answers145
viewsA: Check if a string is composed only of '0' and '1'
Hi, you can use REGEX to validate: function useRegex(input) { let regex = /^[0-1]+$/i; return regex.test(input); } you can validate your tests by these sites below: https://regexr.com/…
-
0
votes0
answers42
viewsQ: I’m having trouble accessing the Mysql server
I am using Heidisql to connect to my Mysql servers. On the machines I set up I can connect smoothly to the Mysql server. But in the case that it was not I who set up is giving the problem of: Access…
mysqlasked Alberto Vitoriano 23 -
1
votes3
answers11806
viewsQ: Copy from a filtered sheet in excel vba
I’m having a problem, I need to extract a list of excel data that I Filtreed with over 200,000 lines, i have the option to make excel analyze each line and delete it but I wanted to do this without…