Is there any way using swift 3 we can match a string with Multiple regular expression patterns. In Java, we usually pass them as below
[a-zA-Z]{3}|^[^\\d].*|([\\w&&[^b]])*
Is there any similar way we can do it using Swift.
Is there any way using swift 3 we can match a string with Multiple regular expression patterns. In Java, we usually pass them as below
[a-zA-Z]{3}|^[^\\d].*|([\\w&&[^b]])*
Is there any similar way we can do it using Swift.