2016-03-15 120 views

回答

1

鑑於您的網址定義,你可以使用這個

NSRegularExpression(pattern: "([0-9]+)", options: [.CaseInsensitive]) 

,並得到使用

firstMatchInString 
+0

網址我從那個可能會在其他形式的服務器越來越添加。就像它可能包含一些字母 –

1

第一假球JackTurky的回答,改變正則表達式應該如下

NSRegularExpression(pattern: "(?<=video/)([a-z0-9]*))", options: [.CaseInsensitive]) 
使用

並獲得第一個匹配使用

firstMatchInString 

如果你需要一些其他的字符,如 - ,你剛過9