zoukankan      html  css  js  c++  java
  • java和javascript双引号嵌套的问题

    双引号不能嵌套双引号,否则一对双引号就结束了。

    java中双引号中嵌套双引号需要转义:

        /**
         * java双引号转义符测试
         * @author asus
         *
         */
        public static void main(String[] args) {
            
            String ont = ""name"";        //字符串两边含有双引号    
            String tow = "name "is" wgb"; //字符串中间含有双引号    
            String three = "\name";        //使用转义字符还可以使字符串包含其他字符    
                
            System.out.println("字符串ont  :" + ont);   
            System.out.println("字符串tow  :" + tow);   
            System.out.println("字符串three:" + three);
        }

    控制台结果:

    JavaScript中表示字符串时,可以用双引号,也可以用单引号。

    当拼接JS字符串的时候,双引号里面一定要是单引号,单引号里面要是双引号。如此循环!不过全部双引号也可以,就是双引号里面的双引号需要转义!

           /**
            * 当拼接JS字符串的时候,双引号里面一定要是单引号,单引号里面要是双引号(需转义)。如此循环!不过全部双引号也可以,就是双引号里面的双引号需要转义!
            */
           var inShort="What do the 'guards "at" Buckingham Palace' wear on their heads?";
           
           var inShort="What do the "guards "at" Buckingham Palace" wear on their heads?";
  • 相关阅读:
    怎么查看京东店铺的品牌ID
    PPT编辑的时候很卡,放映的时候不卡,咋回事?
    codevs 1702素数判定2
    codevs 2530大质数
    codevs 1488GangGang的烦恼
    codevs 2851 菜菜买气球
    hdu 5653 Bomber Man wants to bomb an Array
    poj 3661 Running
    poj 1651 Multiplication Puzzle
    hdu 2476 String Painter
  • 原文地址:https://www.cnblogs.com/wkrbky/p/5961225.html
Copyright © 2011-2022 走看看