博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#不使用Split()方法,遍历数组,使用“|”分割元素并输出 分类: ...
阅读量:6339 次
发布时间:2019-06-22

本文共 1116 字,大约阅读时间需要 3 分钟。

static void Main(string[] args)        {            string[] strBtu = { "cc", "vvv", "bbbb", "dd", "ggg", "mmmm" };            string[] strBtu2 = new string[strBtu.Length + strBtu.Length - 1];            int nIndex=0;                       for (int i = 0; i < strBtu.Length; i++)            {                strBtu2[nIndex] = strBtu[i];                nIndex++;                if (nIndex < 11)                {                    strBtu2[nIndex] = "|";                    nIndex++;                }                else                {                    break;                }            }            for (int i = 0; i < strBtu2.Length; i++)            {                Console.Write(strBtu2[i]);            }            Console.ReadKey();        }

使用windows控制台程序,输出数组的元素,并且使用“|”分割。

//第二种方法            string s = "";            for (int i = 0; i < strBtu.Length - 1; i++)            {                s = s + strBtu[i] + "|";            }            s = s + strBtu[strBtu.Length - 1];            Console.Write(s);

版权声明:本文为博主原创文章,未经博主允许不得转载。

转载于:https://www.cnblogs.com/yisuowushinian/archive/2012/05/13/4715657.html

你可能感兴趣的文章
emacs 前端插件推荐[emmet-mode]
查看>>
dnsmasq配置文件
查看>>
Unity链接SqlServer数据库并进行简单的数据查询
查看>>
23种设计模式
查看>>
原生javascript学习:用循环改变div颜色
查看>>
ABBYY FineReader 12内置的自动化任务
查看>>
ab 测试 和 apache 修改 并发数 mpm
查看>>
Nginx 的软件负载均衡详解
查看>>
TIMED OUT WAITING FOR OHASD MONITOR
查看>>
过滤器
查看>>
Html与CSS快速入门02-HTML基础应用
查看>>
Tr A
查看>>
poj 3185 The Water Bowls
查看>>
常用HTTP状态码备忘
查看>>
资源合集
查看>>
MongoDB学习笔记(四) 用MongoDB的文档结构描述数据关系
查看>>
解决phpredis 'RedisException' with message 'read error on connection'
查看>>
php设计模式(二):结构模式
查看>>
《图解TCP_IP_第5版》读书笔记
查看>>
RMAN Complete Recovery
查看>>