从 BrightScript 字符串中删除结束字符

Remove end character from BrightScript string

我正在使用此命令在 ?text=; 之后提取一些数字; re = CreateObject ("roRegex", ".?text=([^,]+),(.)", "s")

然后我得到了我想要的,但最后多了一个字符; 1234

我要的只是1234

我现在如何删除末尾的 "?我可以使用 Trim() 还是拆分?不确定如何使用。谢谢

使用来自 ifStringOps (https://sdkdocs.roku.com/display/sdkdoc/ifStringOps) 的 Replace 函数

Replace(from As String, to As String) As String

result = "1234" + Chr(34) ' 1234"
result = result.Replace(Chr(34), "")

最近在 https://forums.roku.com/viewtopic.php?f=34&t=97602#p544884

我想出了自己的答案:https://forums.roku.com/viewtopic.php?f=34&t=97602#p544884