已知S为StringBuffer类型的对象,将S中的英文变为小写的语句是( )。 A: S.toString().toLowerCase(); B: S. toLowerCase(); C: S.String().toLowerCase(); D: S.to().toLowerCase();
已知S为StringBuffer类型的对象,将S中的英文变为小写的语句是( )。 A: S.toString().toLowerCase(); B: S. toLowerCase(); C: S.String().toLowerCase(); D: S.to().toLowerCase();
下面选项中函数使用正确的是()。 A: 'miNI'.toUpperCase() B: toUpperCase('miNI') C: 'miNI'.toLowerCase() D: toLowerCase('miNI')
下面选项中函数使用正确的是()。 A: 'miNI'.toUpperCase() B: toUpperCase('miNI') C: 'miNI'.toLowerCase() D: toLowerCase('miNI')
toLowerCase()方法可以将字符串转换为大写
toLowerCase()方法可以将字符串转换为大写
实现小写转大写的JS代码是使用toLowerCase()方法。
实现小写转大写的JS代码是使用toLowerCase()方法。
fn:toLowerCase函数允许将源字符串中的字符全部转换成小写字符。
fn:toLowerCase函数允许将源字符串中的字符全部转换成小写字符。
String对象的()属性返回字符串的长度。 A: charAt() B: substring() C: toLowerCase() D: length
String对象的()属性返回字符串的长度。 A: charAt() B: substring() C: toLowerCase() D: length
将String转成字符数组用哪个方法() A: toCharArray() B: getBytes() C: toLowerCase() D: toUpperCase()
将String转成字符数组用哪个方法() A: toCharArray() B: getBytes() C: toLowerCase() D: toUpperCase()
Java语言中用来拆分字符串的方法是 A: replace() B: split() C: toLowerCase() D: toUpperCase()
Java语言中用来拆分字符串的方法是 A: replace() B: split() C: toLowerCase() D: toUpperCase()
7、将字符串转成字符数组的方法是()。 A: toString() B: toCharArray() C: toUpperCase() D: toLowerCase()
7、将字符串转成字符数组的方法是()。 A: toString() B: toCharArray() C: toUpperCase() D: toLowerCase()
String a = “ABCD”; String b = a.toLowerCase(); b.replace(‘a’, ‘d’); b.replace(‘b’, ‘c’); System.out.println(b); What is the result? () A: abcd B: ABCD C: dccd D: dcba E: Compilation fails. F: An exception is thrown at runtime.
String a = “ABCD”; String b = a.toLowerCase(); b.replace(‘a’, ‘d’); b.replace(‘b’, ‘c’); System.out.println(b); What is the result? () A: abcd B: ABCD C: dccd D: dcba E: Compilation fails. F: An exception is thrown at runtime.