最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - converting a date to european format - Stack Overflow

programmeradmin0浏览0评论

I am writing a script for automating XML data in Indesign. I currently have in the XML the date in American Format (MM/D/YY) but once I run the script in Indesign my goal is to have it be in European format (DD/M/YY). What can I add to my script in order to write a function that will convert any date formats to european formats? I hope this makes sense. I need help!

I am writing a script for automating XML data in Indesign. I currently have in the XML the date in American Format (MM/D/YY) but once I run the script in Indesign my goal is to have it be in European format (DD/M/YY). What can I add to my script in order to write a function that will convert any date formats to european formats? I hope this makes sense. I need help!

Share Improve this question asked Aug 15, 2012 at 14:25 user1600810user1600810
Add a ment  | 

3 Answers 3

Reset to default 4

i guess simply using

function convertDate(dateString) {
    var date = new Date(dateString);
    return date.getDate()+"/"+(date.getMonth() + 1)+"/"+date.getFullYear();
}

just note european format does not use slashes but dots as far as i know so it should look like this dd.mm.yyyy not dd/mm/yyyy becouse it can be mismatched with us format

How to format a JavaScript date?

Return dd-mm-yyyy from Date() object

var d = new Date().toLocaleDateString("uk-Uk");

Output: 03.09.2021

var d = new Date().toLocaleDateString("en-GB");

Output: 03/09/2021

var d = new Date().toLocaleDateString("en-UK").replace(/\//g, '-');

Output: 03-09-2021

var myDate = new Date('myDateString'); //you can also do milliseconds instead of the date string
var myEuroDate = myDate.getDate() + '/' + myDate.getMonth + '/' + myDate.getFullYear();

Useful as well... http://arshaw./xdate/

发布评论

评论列表(0)

  1. 暂无评论