对于我的应用程序,我有来自API的信息,这是一堆文本,放在段落标记之间。但是,有时文本会说" null"。如何删除任何包含" null"的文本?并将其替换为"没有信息"用Javascript?与发誓过滤器类似。
答案 0 :(得分:2)
只是
all_string.replace('null', 'No Info');
通过这种方式,您可以将 disannulling 之类的单词转换为 disanNo Infoing 。因此,您应该使用正则表达式来匹配规范 null 字:
all_string.replace(/\bnull\b/g, 'No Info');
示例强>
var element = document.querySelector('p');
element.innerHTML = element.innerHTML.replace(/\bnull\b/g, 'No Info');
<p>this is the first null line.
another null null null.
thisnull will not be replaced. </p>
答案 1 :(得分:0)
要替换文字,您可以使用String.prototype.replace()功能。
你可以像这样使用它:
YOUR_STRING = YOUR_STRING.replace(/\bnull\b/g, "No info");
答案 2 :(得分:0)
您可以使用替换功能。
如果要替换倍数,则需要使用正则表达式。
例如,
"hello hello".replace("hello","goodbye")
输出:"goodbye hello"
"hello hello".replace(/hello/g,"goodbye")
输出:"goodbye goodbye"
答案 3 :(得分:0)
while(APIString.indexOf('null') != -1){
APIString.replace('null','No info');
}
&#13;