String
struct String- 
                  
                  Check if string is valid with given regex DeclarationSwift internal func isValidRegex(_ regex: String) -> Bool
- 
                  
                  Check if string is only letters character set DeclarationSwift internal var isLetters: Bool { get }
- 
                  
                  Check if string is only digits character set DeclarationSwift internal var isDigits: Bool { get }
- 
                  
                  Check if string is only alpha numerics character set DeclarationSwift internal var isAlphanumerics: Bool { get }
- 
                  
                  Returns bounding box size for a given font DeclarationSwift internal func constrainedSize(width: CGFloat = .greatestFiniteMagnitude, height: CGFloat = .greatestFiniteMagnitude, font: UIFont) -> CGSize
- 
                  
                  Sejima: Returns a localized string, with an optional comment for translators. "Hello world".localized -> Bonjour le mondeDeclarationSwift public func localized(comment: String = "") -> String
- 
                  
                  Sejima: Check if string is valid email format. Note Note that this property does not validate the email address against an email server. It merely attempts to determine whether its format is suitable for an email address. john@doe.com .isValidEmail -> true❤️@❤️.com .isValidEmail -> trueaa@❤️.co .isValidEmail -> trueaa@aa.c .isValidEmail -> falsea@a.co .isValidEmail -> falsea@❤️.com .isValidEmail -> falseaa@❤️.c .isValidEmail -> falseDeclarationSwift public var isValidEmail: Bool { get }
 View on GitHub
            View on GitHub
           Install in Dash
            Install in Dash
           String Extension Reference
      String Extension Reference