有没有Scala库/示例将解析URL / URI到案例类结构中进行模式匹配?
解决方法
这是一个提取器,可以为您获取一些URL:
object UrlyBurd { def unapply(in: java.net.URL) = Some(( in.getProtocol,in.getHost,in.getPort,in.getPath )) } val u = new java.net.URL("http://www.google.com/") u match { case UrlyBurd(protocol,host,port,path) => protocol + "://" + host + (if (port == -1) "" else ":" + port) + path }