android studio 从 url 加载文本并按分隔符分割

问题描述 投票:0回答:1

我正在尝试从网址获取文本

文本采用以下格式:

text1:text2:text3:text4

在我需要用分隔符“:”分割之后 我需要运行 foreach 命令 我的函数(字符串[i])

任何帮助将不胜感激

kotlin android-studio url
1个回答
0
投票
val textList = rawUrl.split(‘:’)
textList.forEach { }
© www.soinside.com 2019 - 2024. All rights reserved.