createOrNull

@DeprecatedAsErrorSince(version = KotoolsTypesVersion.V4_5_1)
fun createOrNull(text: String): EmailAddress?

Deprecated (with error)

A better representation of email addresses exists in the `org.kotools.types` package. This one will be removed in v4.7.

Replace with

org.kotools.types.EmailAddress.fromStringOrNull(text)

Creates an email address from the specified text, or returns null if the text doesn't match the corresponding regular expression.


Calling from Kotlin

Here's an example of calling this function from Kotlin code:

val address: EmailAddress? =
    EmailAddress.createOrNull("contact@kotools.org")
println(address) // contact@kotools.org

Calling from Java

Here's an example of calling this function from Java code:

final EmailAddress address =
        EmailAddress.Companion.createOrNull("contact@kotools.org");
System.out.println(address); // contact@kotools.org