码迷,mamicode.com
首页 > 其他好文 > 详细

字符串转义字符

时间:2014-05-26 08:00:40      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:c   class   ext   a   string   cti   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleProgamming
{
    class Program
    {
        static void Main(string[] args)
        {
            //string s = "\"ab\"";     "ab"
            //string s = "a\nb"; //n:newline     a
                                                             //b
            //string s = "a\\b";     a\b
            //string s = "c:\temp\\fasdf\\dd\aa\\1.jpg";   c:      emp\fasdf\dda\1.jpg
            //string s = "\\\\";    \\
           // string s = @"\\\\"; //字符串中的字符不当成转义符      \\\\
            //string s = @"c:\temp\fasdf\dd\aa\1.jpg";          c:\temp\fasdf\dd\aa\1.jpg
           // string s = @""ab""; //错误,@只对转义符有意义
            Console.WriteLine(s);

            //转义符只针对在代码中直接写出的字符串,对于程序中直接读出来字符串没有这个问题

            Console.ReadKey();
        }
    }
}

字符串转义字符,布布扣,bubuko.com

字符串转义字符

标签:c   class   ext   a   string   cti   

原文地址:http://www.cnblogs.com/lcyuhe/p/3747724.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!