• 2022-06-06 问题

    下面代码运行后输出的结果是( )。$str="phper";$replace="mysql";echo substr_replace($str,$replace,1,2); A: pmysqler B: phpermysql C: mysql D: pmysql

    下面代码运行后输出的结果是( )。$str="phper";$replace="mysql";echo substr_replace($str,$replace,1,2); A: pmysqler B: phpermysql C: mysql D: pmysql

  • 2021-04-14 问题

    若串S1=‘ABCDEFG’, S2=‘9898’ ,S3=‘###’,S4=‘012345’,执行concat(replace(S1,substr(S1,4,3),S3),substr(S4,index(S2,‘8’),length(S2)))其结果为

    若串S1=‘ABCDEFG’, S2=‘9898’ ,S3=‘###’,S4=‘012345’,执行concat(replace(S1,substr(S1,4,3),S3),substr(S4,index(S2,‘8’),length(S2)))其结果为

  • 2022-06-06 问题

    字符串替换: echo substr_replace("abcdefg", "OK", 3)."";//abdOK echo substr_replace("abcdefg", "OK", 3,3)."";//abcOKg echo substr_replace("abcdefg", "OK", -2,3)."";//abcdeOK echo substr_replace("abcdefg", "OK", 3,-2)."";//abcOKfg echo substr_replace("abcdefg", "OK", 2,0)."";//abOKcdefg 编辑代码,并输出运行结果

    字符串替换: echo substr_replace("abcdefg", "OK", 3)."";//abdOK echo substr_replace("abcdefg", "OK", 3,3)."";//abcOKg echo substr_replace("abcdefg", "OK", -2,3)."";//abcdeOK echo substr_replace("abcdefg", "OK", 3,-2)."";//abcOKfg echo substr_replace("abcdefg", "OK", 2,0)."";//abOKcdefg 编辑代码,并输出运行结果

  • 2022-06-07 问题

    中国大学MOOC: 设串 S1 = 1234567 ,S2 = abab ,S3 = AAA ,S4 = +-*/@# ,则执行replace(S1,substr(S1,4,length(S3)),concat(S3,substr(S4,length(S2),index(S2, a)))) 的结果串是( )。

    中国大学MOOC: 设串 S1 = 1234567 ,S2 = abab ,S3 = AAA ,S4 = +-*/@# ,则执行replace(S1,substr(S1,4,length(S3)),concat(S3,substr(S4,length(S2),index(S2, a)))) 的结果串是( )。

  • 2022-06-07 问题

    下列String对象的方法中,哪一个用来将字符串分隔为字符串数组。() A: substr()方法 B: substring()方法 C: replace()方法 D: split()方法

    下列String对象的方法中,哪一个用来将字符串分隔为字符串数组。() A: substr()方法 B: substring()方法 C: replace()方法 D: split()方法

  • 2022-05-26 问题

    下面哪个函数返回中出现substr的第一个字母的标号,如果S中没有substr则返回-1: A: S.rindex(substr,[start,[end]]) B: S.rfind(substr,[start,[end]]) C: S.index(substr,[start,[end]]) D: S.find(substr,[start,[end]])

    下面哪个函数返回中出现substr的第一个字母的标号,如果S中没有substr则返回-1: A: S.rindex(substr,[start,[end]]) B: S.rfind(substr,[start,[end]]) C: S.index(substr,[start,[end]]) D: S.find(substr,[start,[end]])

  • 2022-06-11 问题

    从字符串“hello-world”中获取world,以下哪个方法正确 A: substr("hello-world",6); B: substr("hello-world",6,5); C: substr("hello-world",-5,5); D: substr("hello-world",-5);

    从字符串“hello-world”中获取world,以下哪个方法正确 A: substr("hello-world",6); B: substr("hello-world",6,5); C: substr("hello-world",-5,5); D: substr("hello-world",-5);

  • 2022-05-30 问题

    设字符型变量a="AB$ $CD $ $ $EF $ $ $ $",若想从中取出“$ $ $”号,以下选项正确的是______。 A: SUBSTR(a,7,9) B: SUBSTR(a,7,3) C: SUBSTR(a,12,14) D: SUBSTR(a,2,3)

    设字符型变量a="AB$ $CD $ $ $EF $ $ $ $",若想从中取出“$ $ $”号,以下选项正确的是______。 A: SUBSTR(a,7,9) B: SUBSTR(a,7,3) C: SUBSTR(a,12,14) D: SUBSTR(a,2,3)

  • 2022-06-07 问题

    若串S1=‘ABCDEFG’,S2=‘9898’,S3=‘TTT’,S4=‘012345’,执行concat(replace(S1,substr(S1,length(S2),length(S3)),S3),substr(S4,index(S2,‘8’),length(S2)))其结果为 。(注意:字符在串中的位置从1开始,直接给出字符串的内容,无需定界符和其它符号)

    若串S1=‘ABCDEFG’,S2=‘9898’,S3=‘TTT’,S4=‘012345’,执行concat(replace(S1,substr(S1,length(S2),length(S3)),S3),substr(S4,index(S2,‘8’),length(S2)))其结果为 。(注意:字符在串中的位置从1开始,直接给出字符串的内容,无需定界符和其它符号)

  • 2022-06-06 问题

    选择下面程序的运行结果()。 echo substr_replace("ABC","DEF",3,1);

    选择下面程序的运行结果()。 echo substr_replace("ABC","DEF",3,1);

  • 1 2 3 4 5 6 7 8 9 10