How do I get local system format (like dd-mm-yyyy or mm/dd/yyyy) in matlab ?

2 views (last 30 days)
df = 'mm/dd/yyyy';datestr(datenum(today),df)

Answers (1)

Walter Roberson
Walter Roberson on 19 Jan 2017
datestr(today, 'local')
Or is the question to find out what the system format is ?
  3 Comments
Walter Roberson
Walter Roberson on 19 Jan 2017
To avoid having to write some C++ code to retrieve the information, it is plausible that you might be able to find a Java method for this, or an ActiveX method. This is some sample VBS code at http://www.vb-helper.com/howto_format_time.html

Sign in to comment.

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!