• <legend id='MV1AF'><style id='MV1AF'><dir id='MV1AF'><q id='MV1AF'></q></dir></style></legend>
        <bdo id='MV1AF'></bdo><ul id='MV1AF'></ul>
      1. <i id='MV1AF'><tr id='MV1AF'><dt id='MV1AF'><q id='MV1AF'><span id='MV1AF'><b id='MV1AF'><form id='MV1AF'><ins id='MV1AF'></ins><ul id='MV1AF'></ul><sub id='MV1AF'></sub></form><legend id='MV1AF'></legend><bdo id='MV1AF'><pre id='MV1AF'><center id='MV1AF'></center></pre></bdo></b><th id='MV1AF'></th></span></q></dt></tr></i><div id='MV1AF'><tfoot id='MV1AF'></tfoot><dl id='MV1AF'><fieldset id='MV1AF'></fieldset></dl></div>
      2. <small id='MV1AF'></small><noframes id='MV1AF'>

        <tfoot id='MV1AF'></tfoot>

        使用 PST/CEST/UTC/等形式的时区解析 DateTime

        时间:2023-10-07

        • <legend id='fZVRt'><style id='fZVRt'><dir id='fZVRt'><q id='fZVRt'></q></dir></style></legend>

              <tbody id='fZVRt'></tbody>

              <small id='fZVRt'></small><noframes id='fZVRt'>

                  <bdo id='fZVRt'></bdo><ul id='fZVRt'></ul>
                • <i id='fZVRt'><tr id='fZVRt'><dt id='fZVRt'><q id='fZVRt'><span id='fZVRt'><b id='fZVRt'><form id='fZVRt'><ins id='fZVRt'></ins><ul id='fZVRt'></ul><sub id='fZVRt'></sub></form><legend id='fZVRt'></legend><bdo id='fZVRt'><pre id='fZVRt'><center id='fZVRt'></center></pre></bdo></b><th id='fZVRt'></th></span></q></dt></tr></i><div id='fZVRt'><tfoot id='fZVRt'></tfoot><dl id='fZVRt'><fieldset id='fZVRt'></fieldset></dl></div>
                  <tfoot id='fZVRt'></tfoot>
                  本文介绍了使用 PST/CEST/UTC/等形式的时区解析 DateTime的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试解析类似于以下内容的国际日期时间字符串:

                  I'm trying to parse an international datetime string similar to:

                  24-okt-08 21:09:06 CEST
                  

                  到目前为止,我得到了类似的东西:

                  So far I've got something like:

                  CultureInfo culture = CultureInfo.CreateSpecificCulture("nl-BE");
                  DateTime dt = DateTime.ParseExact("24-okt-08 21:09:06 CEST",
                      "dd-MMM-yy HH:mm:ss ...", culture);
                  

                  问题是我应该为格式字符串中的..."使用什么?查看 自定义日期和时间格式字符串 MSDN 页面似乎没有以 PST/CEST/GMT/UTC 形式列出用于解析时区的格式字符串.

                  The problem is what should I use for the '...' in the format string? Looking at the Custom Date and Time Format String MSDN page doesn't seem to list a format string for parsing timezones in PST/CEST/GMT/UTC form.

                  推荐答案

                  AFAIK 无法识别时区缩写.但是,如果您将缩写替换为时区偏移量,就可以了.例如:

                  AFAIK the time zone abbreviations are not recognized. However if you replace the abbreviation with the time zone offset, it will be OK. E.g.:

                  DateTime dt1 = DateTime.ParseExact("24-okt-08 21:09:06 CEST".Replace("CEST", "+2"), "dd-MMM-yy HH:mm:ss z", culture);
                  DateTime dt2 = DateTime.ParseExact("24-okt-08 21:09:06 CEST".Replace("CEST", "+02"), "dd-MMM-yy HH:mm:ss zz", culture);
                  DateTime dt3 = DateTime.ParseExact("24-okt-08 21:09:06 CEST".Replace("CEST", "+02:00"), "dd-MMM-yy HH:mm:ss zzz", culture);
                  

                  这篇关于使用 PST/CEST/UTC/等形式的时区解析 DateTime的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何在没有 Outlook 的情况下通过邮件发送 Outlook 任务请求? 下一篇:在 c# 中的特定时区创建日期时间

                  相关文章

                  <small id='YwKtf'></small><noframes id='YwKtf'>

                  1. <i id='YwKtf'><tr id='YwKtf'><dt id='YwKtf'><q id='YwKtf'><span id='YwKtf'><b id='YwKtf'><form id='YwKtf'><ins id='YwKtf'></ins><ul id='YwKtf'></ul><sub id='YwKtf'></sub></form><legend id='YwKtf'></legend><bdo id='YwKtf'><pre id='YwKtf'><center id='YwKtf'></center></pre></bdo></b><th id='YwKtf'></th></span></q></dt></tr></i><div id='YwKtf'><tfoot id='YwKtf'></tfoot><dl id='YwKtf'><fieldset id='YwKtf'></fieldset></dl></div>

                    <legend id='YwKtf'><style id='YwKtf'><dir id='YwKtf'><q id='YwKtf'></q></dir></style></legend>
                    • <bdo id='YwKtf'></bdo><ul id='YwKtf'></ul>

                      <tfoot id='YwKtf'></tfoot>