How you can check enter data is IP or not valid
when user input Ip in textbox, you must check this.
one way is using Regex
for this i have source code. i test it and work true:
Sub ValidateIP(ip As String) As Boolean
If ip.EqualsIgnoreCase("localhost") Then Return True
Dim pattern...
I am working on an app that needs to be able to manipulate JSON strings. They are stored in a compact format then prettified for display and editing.
The main problem I have found is that if the json is invalid, it can't be prettified with the existing JSON lib. I found this project on github...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.