首页 \ 问答 \ 又一个日期格式问题:((Yet another date formatting problem :()

又一个日期格式问题:((Yet another date formatting problem :()

我似乎每天都有日期格式问题!

我正在查询一个表格,并以格式dd / mm / yyyy(作为字符串btw)获得一个日期。 辉煌! 这就是我想要的。 但是,现在我想将该字符串转换为日期,以便我可以做到

dim dayNumber as integer = day.DayOfWeek 

但是,当我将它转换为日期时,它会将其更改为#m / dd / yyyy#。 AHHHH! 我怎么能改变这个?

这是我试过的代码

Dim ActivityDate As String
If dt.Rows(i)("Date") Is DBNull.Value Then
    ActivityDate = ""
Else
    ActivityDate = dt.Rows(i)("Date")
End If

Dim ci As New System.Globalization.CultureInfo("en-CA")
Dim theDate As Date = Date.Parse(ActivityDate, ci)

Dim day As Integer = theDate.DayOfWeek

干杯


I seem to have a date formatting problem every day!

I am querying a table and am getting a date back in the format dd/mm/yyyy (as a string btw). Brilliant! thats what I want. But, now I want to convert that string to a date so i can do

dim dayNumber as integer = day.DayOfWeek 

But when I convert it to a date it changes it to #m/dd/yyyy#. AHHHH! how can I change this?

here is my code i've tried

Dim ActivityDate As String
If dt.Rows(i)("Date") Is DBNull.Value Then
    ActivityDate = ""
Else
    ActivityDate = dt.Rows(i)("Date")
End If

Dim ci As New System.Globalization.CultureInfo("en-CA")
Dim theDate As Date = Date.Parse(ActivityDate, ci)

Dim day As Integer = theDate.DayOfWeek

Cheers


原文:https://stackoverflow.com/questions/2629526
更新时间:2022-12-28 13:12

最满意答案

你必须玩hold space

sed -ne '/^$/ { g; p; b }; h; $ { g; p }' infile

它是如何工作的?

对于每个法线,将其复制到hold spaceh )覆盖以前的内容。 对于特殊情况(空行和文件的最后一行),获取保留空间的内容并打印它。

它产生:

bbbbb
fffff
iiiii

You have to play with the hold space.

sed -ne '/^$/ { g; p; b }; h; $ { g; p }' infile

How does it work?

For each normal line, copy it to hold space (h) overwritting previous content. And for special cases (empty lines and last line of file), take the content of hold space and print it.

It yields:

bbbbb
fffff
iiiii

相关问答

更多
  • 格式如下: [# ] 1%\r 注意\r字符。 这是所谓的回车 ,将光标移回到行的开头。 最后,确保你使用 System.out.print() 并不是 System.out.println() Format your string like so: [# ] 1%\r Note the \r character. It is the so-called carriage return that will move the ...
  • 如果要忽略只有空格的行: if not line.strip(): ... do something 空字符串是一个False值。 或者如果你真的只想要空行: if line in ['\n', '\r\n']: ... do something If you want to ignore lines with only whitespace: if not line.strip(): ... do something The empty string is a False ...
  • 解 最简单的解决方案是将2种方法合并为1,如下所示: public static void drawTriangleAndSquare(int widthS, int heightS) { // number of leading spaces in front of triangle int k = 2 * heightS - 5; // print square for (int i = 0; i < heightS; i++) { for (int j ...
  • 你当然可以结合top和awk来获得你想要的任何文本部分。 但是对于你的要求,我认为ps适合你: ps -h --format rss 这将以Kilobytes给你相同的数字。 如果你喜欢最后的m ,你可以/1024 。 编辑 即使Jonta报告了版本差异问题。 我仍然不认为解析top的输出以获得内存使用是最好的方法。 这将是通用的解决方案: grep -oP 'VmRSS:\s*\K.*' /proc//status 这是我的输出以上命令和ps一: kent$ ps -h -o ...
  • 你必须玩hold space 。 sed -ne '/^$/ { g; p; b }; h; $ { g; p }' infile 它是如何工作的? 对于每个法线,将其复制到hold space ( h )覆盖以前的内容。 对于特殊情况(空行和文件的最后一行),获取保留空间的内容并打印它。 它产生: bbbbb fffff iiiii You have to play with the hold space. sed -ne '/^$/ { g; p; b }; h; $ { g; p }' infil ...
  • 你打电话给split看起来很可疑。 特别是正则表达式"\n\r" 。 请注意,无论您是否提供带引号的字符串, split的第一个参数总是被解释为正则表达式。 在Unix系统中,行结尾通常是"\n" 。 在DOS / Windows上,它是"\r\n" (与您所拥有的相反)。 在古代的Mac上,它是"\r" 。 要匹配你所能做的所有事情: my @lines = split(/\r\n|\n|\r/, $lyrics); Your call to split looks suspicious. In par ...
  • 我写了一个快速程序,该程序适用于我为此制作的文本文件。 基本上,文本文件包含10行包含单词“header”和20行包含单词“body”。 之后,我有10个空行并重复前30行。 这是仅打印正文的代码。 if __name__ == '__main__': # Open the file for reading. ...
  • 您可以将字符串拆分为“\ n \ n”并查找以Fruits开头的字符串 print(*(i for i in s.split("\n\n") if i.startswith("Fruits"))) 或者,如果您有多个组: print('\n\n'.join((i for i in s.split("\n\n") if i.startswith("Fruits")))) 返回: Fruits Apples: 10 Oranges: 20 Bananas: 5 如果: s = """Fruits Ap ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)