validate

  1. modiranghaneipour

    Android Tutorial How you can check enter data is IP or not valid

    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...
  2. stevel05

    B4J Library JSON Formatter and validator

    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...
Top