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
This is my regular expression for march url, but after method stringByRemovingNamedGroupsFromString , it's modifiedStr is ^app[-]*[a-zA-Z]*.(?|nio).com/content/([^/]+)$.
The text was updated successfully, but these errors were encountered:
@chrismaddern(?:nextev|nio) is a group that match nextv or nio but not remember the match result. but method namedGroupTokensForString had match ':nextev' and remove it. I had try to modify DPLNamedGroupComponentPattern = @"?<!\\?):[a-zA-Z0-9-_][^/]+" to ignore ?:exp expression , and it works well.
app[-]*[a-zA-Z]*.(?:nextev|nio).com/content/:contentId
This is my regular expression for march url, but after method
stringByRemovingNamedGroupsFromString
, it's modifiedStr is^app[-]*[a-zA-Z]*.(?|nio).com/content/([^/]+)$
.The text was updated successfully, but these errors were encountered: