某些用户键入https://google.com/
,而某些用户键入https://google.com
如何检查用户键入是否带斜线?如果用户输入带有斜杠的方式,如何删除斜杠?
答案 0 :(得分:0)
var str = 'https://google.com/';
if (str.endsWith('/')) str = str.substring(0, str.length - 1);
答案 1 :(得分:0)
如果您要进行大量的字符串操作,则可以使用清理包https://pub.dev/documentation/validators/latest/sanitizers/sanitizers-library.html,在您的情况下为rtrim(str, ' /')