c#保留字符串第一个空格,去除所有剩下的空格

c#保留字符串第一个空格,去除所有剩下的空格

csharp 复制代码
static void Main(string[] args)
{
	string input = "download 1 , 1";

    // 寻找第一个空格的位置
    int firstSpaceIndex = input.IndexOf(' ');

    // 去除所有空格
    input = input.Replace(" ", string.Empty).Insert(firstSpaceIndex, " ");

    Console.WriteLine(input);

    Console.ReadLine();
}

保存数据到xml文件

csharp 复制代码
public void submit()
{
    List<string> AllPorts = new List<string>(){
    "1,2",
    "1,3",
    "1,4",
    "1,5"
    };
    //创建一个数据集,将其写入xml文件
    string optime = ConfigFile + ".xml";
    string path = Environment.CurrentDirectory + "\\config\\" + optime;
    //ds.WriteXml(path);
    XDocument xdoc = new XDocument();
    //为文档增加一文档声明
    XDeclaration xdecl = new XDeclaration("1.0", "utf-8", null);
    //创建一个根节点
    XElement xelement = new XElement("List");

    //把根节点添加到文档中

    xdoc.Add(xelement);
    XElement xConfig = new XElement("Config");

    //把根节点添加到文档中
    xConfig.SetElementValue("ID", DateTime.Now.ToString("yyyyMMddHHmmss"));
    xConfig.SetElementValue("StartFrequency", "100"); 
    xConfig.SetElementValue("StopFrequency", "1690");
    xelement.Add(xConfig);
    
    for (int i = 0; i < AllPorts.Count; i++)
    {
        //为根节点下添加子节点
        XElement xperson = new XElement("PortsConfig");
        //为节点添加属性
        //xperson.SetAttributeValue("id", (i + 1).ToString());
        //给子节点添加文本节点
        xperson.SetElementValue("Ports", AllPorts[i]);
        //添加到根节点下

        xelement.Add(xperson);
    }
    //保存Xml文件

    xdoc.Save(path);

    MessageBox.Show("数据已成功保存到"+ ConfigFile + "XML 文件!", "提示");
    //DataSet ds2 = new System.Data.DataSet();
    //ds2.ReadXml("D:\\"+ConfigFile + ".xml");
    //DataTable dt = new DataTable();
    //dt = ds2.Tables[0];
    AllPorts.Clear();
}

读取xml数据

xml数据

xml 复制代码
<?xml version="1.0" encoding="utf-8"?>
<List>
  <Config>
    <ID>20240223162658</ID>
    <StartFrequency>100</StartFrequency>
    <StopFrequency>1690</StopFrequency>
  </Config>
  <PortsConfig>
    <Ports>1,2</Ports>
  </PortsConfig>
  <PortsConfig>
    <Ports>1,3</Ports>
  </PortsConfig>
  <PortsConfig>
    <Ports>1,4</Ports>
  </PortsConfig>
  <PortsConfig>
    <Ports>1,5</Ports>
  </PortsConfig>
</List>

读取xml

csharp 复制代码
static void Main(string[] args)
{
    DataSet ds = new DataSet();
    ds.ReadXml(@"F:\项目\\bin\Debug\config\112233.xml");
    DataTable dt = ds.Tables[0];
    DataTable dt2 = ds.Tables[1];
    string[] ports = null;
    for (int i = 0; i < dt2.Rows.Count; i++)
    {
        ports = dt2.Rows[i][0].ToString().Split(',');

        Console.WriteLine(ports[0] + "," + ports[1]);
    }
}
相关推荐
Lizhihao_23 分钟前
JAVA-队列
java·开发语言
远望清一色42 分钟前
基于MATLAB边缘检测博文
开发语言·算法·matlab
何曾参静谧1 小时前
「Py」Python基础篇 之 Python都可以做哪些自动化?
开发语言·python·自动化
Prejudices1 小时前
C++如何调用Python脚本
开发语言·c++·python
我狠狠地刷刷刷刷刷1 小时前
中文分词模拟器
开发语言·python·算法
wyh要好好学习1 小时前
C# WPF 记录DataGrid的表头顺序,下次打开界面时应用到表格中
开发语言·c#·wpf
AitTech1 小时前
C#实现:电脑系统信息的全面获取与监控
开发语言·c#
qing_0406031 小时前
C++——多态
开发语言·c++·多态
孙同学_1 小时前
【C++】—掌握STL vector 类:“Vector简介:动态数组的高效应用”
开发语言·c++
froginwe111 小时前
XML 编辑器:功能、选择与使用技巧
开发语言