如何在字符串中获取值

如何在字符串中获取值

本文介绍了如何在字符串中获取值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

字符串a =31/2/2014

i想要在字符串中打印2,如何获取

string a="31/2/2014"
i want to print 2 in string ,how to get it

推荐答案

string a="31/2/2014";
string[] parts = a.Split('/');
if (parts.Length >= 2)
{
  return parts[1];    // and parts[0] has the day and parts[2] has the year
}
else
  // bad input





如果确实是 DateTime 那么:



If it really is a DateTime then:

DateTime dt = new DateTime(2014, 2, 31);
int month = dt.Month;



这篇关于如何在字符串中获取值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 23:12