pattern

  1. S

    Share My Creation Class Generator

    Hello, This a small class generator. The class use this concept, thanks to @Emme Developer. Enter the Class Name Enter the fields list (Name, Type and Default Value). Click on the 'Copy' button In your Project, add a Standard Class module with the same class name Select All Paste the...
  2. Alexander Stolte

    Android Code Snippet [B4X] Count Regex Matches

    Sub CountMatches(text As String,pattern As String) As Int Dim tmp_count As Int = 0 Dim Matcher1 As Matcher Matcher1 = Regex.Matcher(pattern, text) Do While Matcher1.Find tmp_count = tmp_count +1 Loop Return tmp_count End Sub
  3. MarkusR

    android display pattern did not work^^

    today my phone did not recognised my display pattern to unlock. i had also finger sensor in use. wahhhh. then i read i can input a new pin at pc in google account security settings and lock the phone. but then the phone still want use the pattern and not the pin^^ and the finger print did not...
Top