gpt4 book ai didi

android - 如何解析 URL 字符串以仅在 Kotlin 中获取域?

转载 作者:行者123 更新时间:2023-12-04 23:52:04 28 4
gpt4 key购买 nike

我看不懂 Java,我需要 Kotlin 中的答案,我在这里读过一个帖子:Get domain name from given url
比如说我有一个这样的字符串:"http://www.myWebsite.com/profile"那么如何以编程方式仅在这样的字符串中获取域名 "myWebsite.com" ?

最佳答案

这是来自 pointed question 的代码刚刚翻译成 Kotlin。您可以在 Kotlin Playground 中试用.

import java.net.URI

fun main() {
val url = "http://www.myWebsite.com/profile"
val result = getDomainName(url)

print(result)
}

fun getDomainName(url: String): String? {
val uri = URI(url)
val domain: String = uri.host
return domain.removePrefix("www.")
}

关于android - 如何解析 URL 字符串以仅在 Kotlin 中获取域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63240339/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com