Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列をTime構造に解析するための確立された方法はありますか?
私が理想的にやりたいのは、の逆ですstrftime(...)。ここでは、時間構造体とフォーマット文字列から文字列を生成する代わりに、提供されたフォーマット文字列に従って解析された文字列から時間構造体を取得します。
strftime(...)
Boostや.NETにあるようなDateTimeクラスを含めることで、オーバーヘッドを追加したくない
文字列を解析するための対応するメソッドstruct tm *はですstrptime。
struct tm *
strptime
残念ながら、これは標準のCランタイムライブラリの一部ではなく、たとえばWindowsには存在しませんが、このようなBSDライセンスバージョンを再利用できます。