Microsoft(R) JScript(R) toUpperCase 方法 |
语言参考 版本 1 |
返回一个字符串,该字符串中的所有字母都被转化为大写字母。
strVariable.toUpperCase( )
"String Literal".toUpperCase( )
toUpperCase 方法对非字母字符不会产生影响。下面的示例演示了 toUpperCase 方法的效果:
在执行上一条语句后 strVariable 的值为:var strVariable = "This is a STRING object"; strVariable = strVariable.toUpperCase( );THIS IS A STRING OBJECT