gpt4 book ai didi

regex - 在Flutter中修剪字符串/文本

转载 作者:行者123 更新时间:2023-12-03 04:00:06 24 4
gpt4 key购买 nike

嗨,我试图修剪抖动的链接

目前,我正在研究regexp,但我认为这不可能

这是完整的链接:
http://sales.local/api/v1/payments/454/ticket/verify?token=jhvycygvjhbknm.eyJpc3MiOiJodH
我想做的是像这样修剪链接:
http://sales.local/api/v1/payments/454
请建议最佳做法,以减少 flutter 中的字符串/文本。谢谢!

最佳答案

尝试使用substring():

  String link = 'http://sales.local/api/v1/payments/454/ticket/verify?token=jhvycygvjhbknm.eyJpc3MiOiJodH';
String delimiter = '/ticket';
int lastIndex = link.indexOf(delimiter);
String trimmed = link.substring(0,lastIndex);
//print(trimmed);

关于regex - 在Flutter中修剪字符串/文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57978167/

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