You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a pattern like:
SOCPattern* pattern = [SOCPattern patternWithString:@"groups/:groupId"]; // valid groupId is of the form group:domain:identifier. Example: group:mydomain:12345
BOOL conform = [pattern stringMatches:@"groups/foo/users"]; // conform is YES
I want the :groupId to match everything other than a "/" so that the above returns NO. Is it possible?
The text was updated successfully, but these errors were encountered:
I have a pattern like:
SOCPattern* pattern = [SOCPattern patternWithString:@"groups/:groupId"]; // valid groupId is of the form group:domain:identifier. Example: group:mydomain:12345
BOOL conform = [pattern stringMatches:@"groups/foo/users"]; // conform is YES
I want the :groupId to match everything other than a "/" so that the above returns NO. Is it possible?
The text was updated successfully, but these errors were encountered: