Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
175
rated 0 times [  177] [ 2]  / answers: 1 / hits: 29860  / 11 Years ago, tue, january 28, 2014, 12:00:00

In IE 11, I'm getting funny results with ToLocaleDateString(). The string returned looks fine in the browser, e.g. 1/28/2014 11:00:46 AM, but then if I copy and paste that value into a plain text editor, it looks like this: ?1?/?28?/?2014 ?11?:?00?:?46? ?AM.



Interestingly, if I paste the text into a Microsoft product, it looks fine... The issue is that if you try to use the value programmatically to create a date, it's invalid. You can test this by just opening up a console in IE11 and creating a new date, using ToLocaleDateString() on it, and then trying to use the resulting string to create a new date in javascript or in the language of your choice (I'm using ASP.NET here...).



Am I doing something wrong, or is there some other way I'm supposed to be interacting with the javascript Date? How can I get rid of those funky symbols?



Edit:
Thanks to the comment below I was able to figure out what the unshown characters are, they're Left-To-Right marks. Depending on the editor I paste the values into and the encoding that the editor is set to use, the text will show up differently: sometimes with ?, sometimes without.


More From » date

 Answers
17

The issue is that if you try to use the value programmatically to create a date, it's invalid.



...



Am I doing something wrong, or is there some other way I'm supposed to be interacting with the javascript Date?




Yes, you are doing it wrong. You shouldn't be using a function intended to format something for locale-specific human display and expect the output to be machine parsable. Any of the output of toLocaleString, toLocaleDateString, or toLocaleTimeString are meant for human-readable display only. (As Bergi clarified in comments, toString is also meant for human display, but ECMA §15.9.4.2 says it should round-trip)



You are likely getting the LTR markers because your display locale is RTL. Besides this, consider that the locale will always affect the output. Perhaps your locale uses dd/mm/yyyy formatting instead of mm/dd/yyyy formatting. Or perhaps your locale requires Asian or Arabic characters. These are all considerations when determining a display format, but are never appropriate for machine parsing.



Also consider that the ECMAScript specification does not define any particular formatting rules for the output of these methods, and different browsers will yield different results.



If the intent is anything other than to display to the user, then you should use one of these functions instead:




  • toISOString will give you an ISO8601/RFC3339 formatted timestamp

  • toGMTString or toUTCString will give you an RFC822/RFC1123 formatted timestamp

  • getTime will give you an integer Unix Timestamp with millisecond precision



All of the above will return a UTC-based value. If you want the local time, you can either build your own string with the various accessor functions (getFullYear, getMonth, etc...), or you can use a library such as moment.js:



This uses moment.js to return an ISO8601 formatted local time + offset from a date:



moment(theDate).format()   // ex:  2014-08-14T13:32:21-07:00

[#72887] Monday, January 27, 2014, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
devlin

Total Points: 474
Total Questions: 113
Total Answers: 100

Location: Sweden
Member since Fri, Apr 16, 2021
3 Years ago
;