C#数组转字符串
C#数组转字符串
C#中的 Join方法和Split方法怎么用?
还有,怎么用join方法或者是Split方法来分割数组中的数据
Join和Split把原先需要循环解决的问题变成一个函数调用。
Split的作用是从一个字符串中,按分隔符取出各分量。
如:
string testString = "James Hare,1001 Broadway Ave,St. Louis,MO,63101";
string[] results = testString.Split(new[] { ',' });
执行后,数组results中的每个元素为串testString中用,分隔的每个分量。
Join则可以将各个分量,加上指定分隔符,合成一个字符串。
如:
string[] parts = { "Apple", "Orange", "Banana", "Pear", "Peach" };
string result = string.Join("/", parts);
执行后,串results的值为"Apple/Orange/Banana/Pear/Peach"
============ 欢迎各位老板打赏~ ===========
与本文相关的文章
- · The instance of entity type ‘Customer’ cannot be tracked because another instance with the same key value for {‘Id’} is already being tracked.
- · .NET8实时更新nginx ip地址归属地
- · 解决.NET Blazor子组件不刷新问题
- · .NET8如何在普通类库中引用 Microsoft.AspNetCore
- · .NET8 Mysql SSL error
- · ASP.NET Core MVC的Razor视图渲染中文乱码的问题
- · .NETCORE 依赖注入服务生命周期
- · asp.net zero改mysql
- · .NET5面试汇总
- · .Net连接Mysql数据库的Convert Zero Datetime日期问题
- · vue使用element-ui中的Message 、MessageBox 、Notification
- · Asp.Net Core Filter 深入浅出的那些事-AOP