gpt4 book ai didi

javascript - 如何向 JavaScript 中的字符串添加新方法?

转载 作者:行者123 更新时间:2023-11-30 10:32:02 25 4
gpt4 key购买 nike

也许这个问题已经发布了,我只是不知道如何搜索它。

我想知道如何创建类似 .replace().toString() 的方法。我的意思是,如果我有一个变量并且我想搜索该变量是否有数字,就像这样做

var someVariable = "hello 34, how are you";

var containsIntsNumber = someVariable.SearchInteger();//being search integer my custom method

if(containsIntsNumber )
{
console.log("It does have integers");
}

我怎样才能做到这一点?

最佳答案

您可以修改 prototypeString object 上.

String.prototype.someFunction = function () {
/* Your function body here; you can use
this to access the string itself */
};

关于javascript - 如何向 JavaScript 中的字符串添加新方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16379081/

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