gpt4 book ai didi

中间的 C# 子字符串

转载 作者:太空狗 更新时间:2023-10-30 00:03:14 24 4
gpt4 key购买 nike

我有以下数据:

D:\toto\food\Cloture_49000ert1_10_01_2013.pdf
D:\toto\food\Cloture_856589_12_01_2013.pdf
D:\toto\food\Cloture_66rr5254_10_12_2012.pdf

如何提取日期部分?例如:

D:\toto\food\Cloture_49000ert1_10_01_2013.pdf --> 10_01_2013
D:\toto\food\Cloture_856589_12_01_2013.pdf --> 12_01_2013
D:\toto\food\Cloture_66rr5254_10_12_2012.pdf --> 10_12_2012

我的想法是使用 LastIndexOf(".pdf") 然后倒数 10 个字符。

如何使用子字符串或其他方法解决此问题?

最佳答案

使用 Substring 在这种情况下。

Retrieves a substring from this instance. The substring starts at a specified character position.

这样试试;

string s = "D:\\toto\\food\\Cloture_490001_10_01_2013.pdf";
string newstring = s.Substring(s.Length - 14, 10);
Console.WriteLine(newstring);

这是一个 DEMO .

关于中间的 C# 子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14338134/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com