Skip to content

Commit

Permalink
[del] : #3 RegexManager 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
1971123-seongmin committed Oct 24, 2024
1 parent ff82aec commit d0996b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/org/sopt/and/utils/RegexManager.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.sopt.and.utils

object RegexManager {
val emailRegex = Regex("^[A-Za-z](.*)([@])(.+)(\\.)(.+)")
val passwordRegex = Regex("^(?=.*[A-Za-z])(?=.*\\d)[A-Za-z\\d]{8,}$")
val emailRegex = Regex("[0-9a-zA-Z]+(.[_a-z0-9-]+)*@(?:\\\\w+\\\\.)+\\\\w+\$")
val specialCharRegex = Regex("[!@#\$%^&*()_+\\-=[\\]{}|;:'\",.<>?/~`]")
}

0 comments on commit d0996b3

Please sign in to comment.