Skip to content

Extend the RequiredRule Class #136

Open
@sumitjain7

Description

@sumitjain7

I want to change the validate(value:String) method in RequiredRule.swift class.
It should first trim all whitespaces then should check for isEmpty.

For this I want to create a String class extension like this:

extension String
{
    func trim()->String
    {
        return self.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceCharacterSet());
    }
}

and then change the validate method like this:

public func validate(value: String) -> Bool { return !(value.trim().isEmpty) }

Suggest me how to do this.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions