已知$str = " Hello World! ";下列说法正确的是:
A: trim($str)结果是" Hello World!";
B: ltrim($str)结果是"Hello World! ";
C: trim($str)结果是" Hello World!";
D: trim($str)结果是"Hello World!";
A: trim($str)结果是" Hello World!";
B: ltrim($str)结果是"Hello World! ";
C: trim($str)结果是" Hello World!";
D: trim($str)结果是"Hello World!";
举一反三
- 11字符串测试1:下列字符串定义正确的是: A: String str="Hello World!"; B: Str str="Hello World!"; C: var str="Hello World!"; D: var str='Hello World!';
- 有以下python代码:str = 'Hello World!'print str 它的结果是输出完整字符串'Hello World!'
- 给定一个java程序的代码片断如下,运行后正确的输出结果是( )。String s=”hello, world”;String str = s.replace(“,” , ” ”);System.out.println(str); A: hello world; B: hello, world C: HELLO WORLD D: HELLO ,WORLD;
- print(str(‘Hello,world! ’)得到的结果是()
- world = "world"str = 'hello'print str+world 的结果为 A: helloworld B: hello world C: hello "world" D: 语法错误