1
所以我有這個簡單的文字:獲得從文本鏈接
To activate your account click the link below:
https://tbeyfee-gkg9834636j-gergity3yu3hgge-drgengo9476y3ltjne
If the above URL does not work try copying and pasting it into your browser. If you continue to have problem please feel free to contact us.
If you have any questions, please do not hesitate to contact your account manager directly or email us at [email protected] and we'll get right back to you.
Thanks again for choosing logger.
Kind regards,
The Logger Team
會是什麼簡單的方法來抓住這個https
鏈接?
這是我嘗試:
val str = "" // This is my string.
val pattern = new Regex("^https.*$")
println(pattern.findAllIn(str))
這是1:'^ https。* $'' – ritesht93
你是否堅持使用Scala代碼或正則表達式?有關正則表達式,請參閱http://stackoverflow.com/questions/3809401/what-is-a-good-regular-expression-to-match-a-url。 –
請參閱我的更新。 –