我对StackOverflow的第一个问题。希望它能收到。 :)
所以我有一个包含3个文本框的表单。
日期: 格式: 输出:
假设您将日期写为“ 05/07/1994” 我在转换这样的日期时遇到的问题是文化支持。 每月是05,一天是07?各国不同。 我想能够在“格式”文本框中编写它。像这样:
日期:1994年5月7日 格式:dd / mm / yyyy
Dim strDate As String = String.Empty
Dim strFormat As String = String.Empty
Dim strResult As String = String.Empty
'I got the code to split the "strDate" by every "/" or every "." so i can isolate the days/months/years in a list.
您将如何创建逻辑,以使其读取“格式”,然后以用户所需的方式处理日期
提前谢谢!请告诉我是否需要以其他方式制定。