From 0d75615dd092241b90b1c914128b8b71a6b63a03 Mon Sep 17 00:00:00 2001 From: Kevin Boulongne Date: Wed, 4 Dec 2024 11:14:27 +0100 Subject: [PATCH] feat: Add `String.isEmail()` function --- .../java/com/infomaniak/core2/EmailUtils.kt | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Core2/src/main/java/com/infomaniak/core2/EmailUtils.kt diff --git a/Core2/src/main/java/com/infomaniak/core2/EmailUtils.kt b/Core2/src/main/java/com/infomaniak/core2/EmailUtils.kt new file mode 100644 index 000000000..b4576dabe --- /dev/null +++ b/Core2/src/main/java/com/infomaniak/core2/EmailUtils.kt @@ -0,0 +1,22 @@ +/* + * Infomaniak SwissTransfer - Android + * Copyright (C) 2024 Infomaniak Network SA + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +package com.infomaniak.core2 + +import android.util.Patterns + +fun String.isEmail(): Boolean = Patterns.EMAIL_ADDRESS.matcher(this).matches()