好的,我有一个小问题,我想在此字符串中指定特定的单词为upperCase()或lowerCase()。
这是我最初尝试的:
function lcFunct() {
var a = "WelCome TO the Test I WANT all THIS to be LoWeRCAse"
document.getElementById("tests").innerHTML = a.str.replace(6,12).toUpperCase()
}
我只想知道如何简单地将某些单词设为
lowerCase
或upperCase
。 最佳答案
您可以针对任何特定字词执行此操作。
这是使用toUpperCase()的示例。
var text = "WelCome TO the Test I WANT all THIS to be LoWeRCAse";
text=text.replace("WelCome","WelCome".toUpperCase());
或以这种方式,这是一个使用substring()和toLowerCase()的示例。
text=text.replace(text.substring(0,7),text.substring(0,7).toLowerCase());
关于javascript - 如何在字符串upperCase或lowerCase中制作特定单词?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34880349/