Posts by Lucas Cordeiro • 29 points
3 posts
-
0
votes0
answers17
viewsQ: Bigquery client for Android
Does anyone know if there is a Bigquery client for Android? I need to perform table queries in Bigquery. I looked at the Google documentation and it says: Note: Java client libraries for Google…
androidasked Lucas Cordeiro 29 -
2
votes1
answer116
viewsA: I need a function to return true or false, depending on the amount of letters
So I changed the regex expression: mascara.matches("\\D{0,4}|\\D{0,4}\\d{0,2}|\\D{0,4}\\d{0,3}"); My test has handled all the cases, including the old plates, but if anyone finds any disagreement,…
-
-2
votes1
answer116
viewsQ: I need a function to return true or false, depending on the amount of letters
boolean b = mascara.matches("\\D{0,4}"); I need a mask (like for example "GHO-1A23") is verified to contain only 4 letters. If you have 4 type only number and if you have less than 4 let type one…