找到 2628 篇文章 关于 C#
44 次查看
以下为字符串数组 - string[] str = { "Java", "AngularJS", "Python", "jQuery", "HTML5" };首先,连接它 - string.Join(" ", str);现在要分离上述连接的字符串,使用 Split() 方法,如下代码所示 - 示例 在线演示using System; public class Demo { public static void Main() { string[] str = { "Java", "AngularJS", "Python", "jQuery", "HTML5" }; // 连接单词 string res = string.Join(" ", str); Console.WriteLine("连接的字符串... " + res); string[] convert = res.Split(' '); Console.WriteLine("分离连接的字符串..."); ... 阅读更多
195 次查看
声明一个字符串并添加元素 - string[] str = { "One", "Two", "Three", "Four", "Five" };使用 Join() 方法连接单词 - string res = string.Join(" ", str);让我们看看完整的代码 - 示例 在线演示using System; public class Demo { public static void Main() { string[] str = { "One", "Two", "Three", "Four", "Five" }; // 连接单词 string res = string.Join(" ", str); Console.WriteLine(res); } }输出One Two Three Four Five
507 次查看
声明并初始化一个数组 - string[] str = new string[] { "Cat", "Mat", "Rat" };现在,使用 IndexOf() 方法查找单词“Mat”的索引 - Array.IndexOf(str, "Mat");以下是代码 - 示例 在线演示using System; public class Demo { public static void Main() { string[] str = new string[] { "Cat", "Mat", "Rat" }; Console.WriteLine("我们的数组 ="); for (int i = 0; i < str.Length; i++) { string res = str[i]; Console.WriteLine(res); } int findIndex = Array.IndexOf(str, "Mat"); Console.Write("元素 Mat 位于以下索引:"); Console.WriteLine(findIndex); } }输出我们的数组 = Cat Mat Rat 元素 Mat 位于以下索引: 1
4K+ 次查看
创建空字符串数组 - string[] str = new string[] {};上面,我们没有向数组中添加元素,因为它为空。即使我们将遍历数组,它也不会显示任何内容,如下所示 - 示例 在线演示using System; public class Demo { public static void Main() { string[] str = new string[] {}; Console.WriteLine("字符串数组元素不会显示,因为它为空..."); for (int i = 0; i < str.Length; i++) { string res = str[i]; Console.WriteLine(res); } } }输出字符串数组元素不会显示,因为它为空...
2K+ 次查看
创建字符串数组 - string[] str = new string[] { "Videos", "Tutorials", "Tools", "InterviewQA" };循环直到数组的长度 - for (int i = 0; i < str.Length; i++) { string res = str[i]; Console.WriteLine(res); }以下是完整代码 - 示例 在线演示using System; public class Demo { public static void Main() { string[] str = new string[] { "Videos", "Tutorials", "Tools", "InterviewQA" }; Console.WriteLine("字符串数组..."); for (int i = 0; i < str.Length; i++) { string res = str[i]; Console.WriteLine(res); } } }输出字符串数组... Videos Tutorials Tools InterviewQA
3K+ 次查看
首先,设置一个数组 - string[] str = new string[]{ "Java", "HTML", "jQuery", "JavaScript", "Bootstrap" };要获取最后一个元素的值,获取长度并显示以下值 - str[str.Length - 1]以上返回最后一个元素。以下是完整代码 - 示例 在线演示using System; public class Demo { public static void Main() { string[] str = new string[] { "Java", "HTML", "jQuery", "JavaScript", "Bootstrap" }; Console.WriteLine("数组..."); foreach(string res in str) { Console.WriteLine(res); } Console.WriteLine("最后一个元素:" + str[str.Length - 1]); } }输出数组... Java HTML jQuery JavaScript Bootstrap 最后一个元素:Bootstrap
10K+ 次查看
在 Join 方法下调用方法以连接单词 - string.Join(" ", display())现在设置一个字符串数组 - string[] str = new string[5];添加单个元素 - str[0] = "My"; str[1] = "name"; str[2] = "is"; str[3] = "Brad"; str[4] = "Pitt";并从方法中返回相同的字符串数组 - return str;以下是完整代码 - 示例 在线演示using System; public class Demo { public static void Main() { Console.WriteLine(string.Join(" ", display())); } static string[] display() { string[] str = new string[5]; // 字符串数组元素 str[0] = "My"; str[1] = "name"; str[2] = "is"; str[3] = "Brad"; str[4] = "Pitt"; return str; } }输出My name is Brad Pitt
228 次查看
使用 ReadToEnd() 方法将文件内容读取到字符串中。将其设置在 StreamReader 下并读取文件 - using (StreamReader sr = new StreamReader("new.txt")){ string res = sr.ReadToEnd(); Console.WriteLine(res); }以下是完整代码 - 示例 在线演示using System.IO; using System; public class Demo { public static void Main() { using (StreamWriter sw = new StreamWriter("new.txt")) { sw.WriteLine("One"); sw.WriteLine("Two"); } using (StreamReader sr = new StreamReader("new.txt")) { string res = sr.ReadToEnd(); ... 阅读更多
454 次查看
要读取文本文件,请在 C# 中使用 StreamReader 类。添加要读取的文件的名称 - StreamReader sr = new StreamReader("hello.txt");使用 ReadLine() 方法并将文件内容获取到字符串中 - using (StreamReader sr = new StreamReader("hello.txt")) { str = sr.ReadLine(); } Console.WriteLine(str);让我们看看以下代码 - 示例 在线演示using System.IO; using System; public class Program { public static void Main() { string str; using (StreamWriter sw = new StreamWriter("hello.txt")) { sw.WriteLine("Hello"); sw.WriteLine("World"); } ... 阅读更多
407 次查看
orderby 用于在 C# 中根据指定字段以特定顺序对集合中的元素进行排序。顺序可以是升序或降序。以下是我们的包含元素的列表 - List myList = new List(); // 添加元素 myList.Add("iOS by Apple"); myList.Add("Android by Google"); myList.Add("Symbian by Nokia");现在,使用 Orderby 以降序排列元素 - var myLen = from element in myList orderby element.Length descending select element;以下是完整代码 - 示例 在线演示using System; using System.Collections.Generic; using System.Linq; class Demo { static void Main() { List myList = new ... 阅读更多