gpt4 book ai didi

javascript - 如何计算没有空格的字符数?

转载 作者:搜寻专家 更新时间:2023-11-01 04:47:14 24 4
gpt4 key购买 nike

我是新手,所以请理解我;/

我正在 appery.io 中创建一个应用程序,它必须计算应用程序用户插入的文本字母数(不含空格)。

我创建了一个输入字段(input),一个用于按下并在标签中显示结果的按钮(result)

按钮代码:

var myString = getElementById("input");

var length = myString.length;

Apperyio('result').text(length);

你能告诉我哪里出了问题吗?

最佳答案

要忽略文字空格,您可以使用带空格的正则表达式:

// get the string
let myString = getElementById("input").value;

// use / /g to remove all spaces from the string
let remText = myString.replace(/ /g, "");

// get the length of the string after removal
let length = remText.length;

要忽略所有空白(新行、空格、制表符),请使用\s 量词:

// get the string
let myString = getElementById("input").value;

// use the \s quantifier to remove all white space
let remText = myString.replace(/\s/g, "")

// get the length of the string after removal
let length = remText.length;

关于javascript - 如何计算没有空格的字符数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26389745/

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