Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.1k views
in Technique[技术] by (71.8m points)

convert dd/mm/yyyy to mm/dd/yyyy in javascript

I want to convert dd/mm/yyyy to mm/dd/yyyy in javascript.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
var initial = 'dd/mm/yyyy'.split(///);
console.log( [ initial[1], initial[0], initial[2] ].join('/')); //=> 'mm/dd/yyyy'

Edit 2021/05/14: A snippet using ES20xx

const pad = v => v.padStart(2, `0`);
const initialDate= new Date().toLocaleDateString("nl-NL")
  .split(/[-/]/).map(pad).join("/");
const toFragments = dateString => initialDate
  .split(/[-/]/).map(pad);
const dateTo_mmddyyyy = ([date, month, year], divider = "/") => 
  `${month}${divider}${date}${divider}${year}`;
const [date, month, year] = toFragments(initialDate);
console.log( `initial (dd/mm/yyyy): ${initialDate}`);
console.log( `reformatted to mm/dd/yyyy (array join): ${
  [month, date, year].join('/') }` );
console.log( `reformatted to mm-dd-yyyy (function): ${
  dateTo_mmddyyyy(toFragments(initialDate), "-") }` );

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...