Big thanks to @Joseinnewworld for sweeping several of my #NFTs! 🙌
— Gaexe (@gaexe_) May 25, 2025
I truly hope Gaudio can be enjoyed by #eCash-ers from all walks of life.
Don’t let Jose be the only one taking this chance 😏
If 1K $XEC still feels a bit much, I’m preparing a CASHBACK scenario just for you $BTC https://t.co/u7rfkKTYVg pic.twitter.com/ImUGqPEd1h
There are several ways to achieve this;
1. Using Regex
fun isEmailValid(email: String): Boolean {
return Pattern.compile(
"^(([\\w-]+\\.)+[\\w-]+|([a-zA-Z]|[\\w-]{2,}))@"
+ "((([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9])\\.([0-1]?"
+ "[0-9]{1,2}|25[0-5]|2[0-4][0-9])\\."
+ "([0-1]?[0-9]{1,2}|25[0-5]|2[0-4][0-9])\\.([0-1]?"
+ "[0-9]{1,2}|25[0-5]|2[0-4][0-9]))|"
+ "([a-zA-Z]+[\\w-]+\\.)+[a-zA-Z]{2,4})$"
).matcher(email).matches()
}2. Using Android Utils
fun isEmailValid(email: String): Boolean {
return android.util.Patterns.EMAIL_ADDRESS.matcher(email).matches()
}Done.
