gpt4 book ai didi

java - 如何从android java字符串中提取子字符串?

转载 作者:行者123 更新时间:2023-12-01 19:38:38 24 4
gpt4 key购买 nike

我尝试从java字符串中提取子字符串,但失败了。我尝试过这样的

String text = "audios/{any_number} any_audio_name.mp3";
text= text.substring(text.indexOf('/'), text.indexOf('3')-2);

已更新

我需要 String 仅包含 any_audio_name 并删除 audios/ ,任何数字,例如{123}.mp3

例如audios/{211} new school诗.mp3new school诗

最佳答案

这个答案可能有帮助

String text = "audios/any_audio_name.mp3";
text= text.substring(text.indexOf('/')+1, text.indexOf('.'));

关于java - 如何从android java字符串中提取子字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56367130/

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