{"id":39207,"date":"2025-04-02T06:21:07","date_gmt":"2025-04-02T06:21:07","guid":{"rendered":"https:\/\/www.railscarma.com\/?p=39207"},"modified":"2026-01-01T05:21:32","modified_gmt":"2026-01-01T05:21:32","slug":"time-formatting-with-strftime-function-in-ruby","status":"publish","type":"post","link":"https:\/\/www.railscarma.com\/es\/blog\/time-formatting-with-strftime-function-in-ruby\/","title":{"rendered":"Formateo de la hora con la funci\u00f3n strftime en Ruby"},"content":{"rendered":"<div data-elementor-type=\"wp-post\" data-elementor-id=\"39207\" class=\"elementor elementor-39207\" data-elementor-post-type=\"post\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-f7a77fb elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"f7a77fb\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5a47058\" data-id=\"5a47058\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-548fe59 elementor-widget elementor-widget-text-editor\" data-id=\"548fe59\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Handling date and time is a crucial aspect of programming, whether you are logging events, scheduling tasks, or formatting timestamps for reports. In Ruby, the <code>strftime<\/code> function is a powerful tool that allows <a href=\"https:\/\/www.railscarma.com\/es\/contratar-desarrollador-de-ruby-on-rails\/\">desarrolladores de rieles<\/a> to format date and time values into readable and customized formats. This article explores how <code>strftime<\/code> works, its most common use cases, and best practices for leveraging it effectively in your <a href=\"https:\/\/www.railscarma.com\/es\/portafolio\/\">Proyectos Ruby<\/a>.<\/span><\/p><h3><strong>Understanding strftime in Ruby<\/strong><\/h3><p>En <code>strftime<\/code> function stands for <strong>String Format Time<\/strong>. It is used to convert a <code>Time<\/code> o <code>DateTime<\/code> object into a formatted string based on specified directives. These directives represent different components of a date and time, such as the year, month, day, hours, minutes, and seconds.<\/p><p><strong>Sintaxis b\u00e1sica<\/strong><\/p><p>The basic syntax of <code>strftime<\/code> in Ruby looks like this:<\/p><pre>formatted_time = Time.now.strftime(\"%Y-%m-%d %H:%M:%S\")\nputs formatted_time<\/pre><p>This outputs a formatted string such as:<br \/>2026-04-02 14:30:45<\/p><h3><strong>Commonly Used Format Specifiers<\/strong><\/h3><p>En <code>strftime<\/code> function provides various format specifiers to customize the date and time output. Below are some of the most commonly used ones:<\/p><table><tbody><tr><th>Specifier<\/th><th>Description<\/th><th>Example Output<\/th><\/tr><tr><td><code>%Y<\/code><\/td><td>Full year<\/td><td><code>2026<\/code><\/td><\/tr><tr><td><code>%y<\/code><\/td><td>Last two digits of the year<\/td><td><code>25<\/code><\/td><\/tr><tr><td><code>%m<\/code><\/td><td>Month (01-12)<\/td><td><code>04<\/code><\/td><\/tr><tr><td><code>%B<\/code><\/td><td>Full month name<\/td><td><code>April<\/code><\/td><\/tr><tr><td><code>%b<\/code><\/td><td>Abbreviated month name<\/td><td><code>Apr<\/code><\/td><\/tr><tr><td><code>%d<\/code><\/td><td>Day of the month (01-31)<\/td><td><code>02<\/code><\/td><\/tr><tr><td><code>%A<\/code><\/td><td>Full weekday name<\/td><td><code>Wednesday<\/code><\/td><\/tr><tr><td><code>%a<\/code><\/td><td>Abbreviated weekday name<\/td><td><code>Wed<\/code><\/td><\/tr><tr><td><code>%H<\/code><\/td><td>Hour (00-23)<\/td><td><code>14<\/code><\/td><\/tr><tr><td><code>%I<\/code><\/td><td>Hour (01-12)<\/td><td><code>02<\/code><\/td><\/tr><tr><td><code>%M<\/code><\/td><td>Minutes (00-59)<\/td><td><code>30<\/code><\/td><\/tr><tr><td><code>%S<\/code><\/td><td>Seconds (00-59)<\/td><td><code>45<\/code><\/td><\/tr><tr><td><code>%p<\/code><\/td><td>AM or PM<\/td><td><code>PM<\/code><\/td><\/tr><tr><td><code>%z<\/code><\/td><td>Time zone offset<\/td><td><code>+0530<\/code><\/td><\/tr><\/tbody><\/table><p><strong>Example Usage<\/strong><\/p><pre>current_time = Time.now\nformatted_time = current_time.strftime(\"Today is %A, %B %d, %Y\")\nputs formatted_time<\/pre><p><strong>Producci\u00f3n:<\/strong><\/p><p>Today is Wednesday, April 02, 2026<\/p><h3><strong>Customizing Date and Time Output<\/strong><\/h3><p>One of the biggest advantages of <code>strftime<\/code> is its flexibility in customizing date and time output. You can mix different specifiers to create a format suitable for your application.<\/p><p><strong>Example 1: Custom Log Format<\/strong><\/p><pre>log_time = Time.now.strftime(\"[%Y-%m-%d %H:%M:%S]\")\nputs \"Log Entry: #{log_time} User logged in.\"<\/pre><p><strong>Producci\u00f3n:<\/strong><\/p><p>Log Entry: [2026-04-02 14:30:45] User logged in.<\/p><p><strong>Example 2: Displaying a User-Friendly Date<\/strong><\/p><pre>event_date = Time.now.strftime(\"%A, %B %d, %Y at %I:%M %p\")\nputs \"The event is scheduled on #{event_date}.\"<\/pre><p><strong>Producci\u00f3n:<\/strong><\/p><p>The event is scheduled on Wednesday, April 02, 2026 at 02:30 PM.<\/p><h3><strong>Handling Time Zones with strftime<\/strong><\/h3><p>Time zones can be tricky when working with timestamps. Fortunately, Ruby provides built-in support for handling time zones.<\/p><p><strong>Example: Formatting Time with a Specific Time Zone<\/strong><\/p><pre>require 'time'\nlocal_time = Time.now.getlocal(\"+05:30\")\nputs local_time.strftime(\"Current Time: %Y-%m-%d %H:%M:%S %z\")<\/pre><p><strong>Producci\u00f3n:<\/strong><\/p><p>Current Time: 2026-04-02 20:00:45 +0530<\/p><h3><strong>Comparing strftime with Other Time Formatting Methods<\/strong><\/h3><p>En <code>strftime<\/code> is widely used for formatting time, Ruby also provides other methods:<\/p><ul><li><code>iso8601<\/code>: Outputs time in ISO 8601 format.<br \/>Time.now.iso8601<br \/><strong>Ejemplo de salida:<\/strong> <code>2026-04-02T14:30:45+00:00<\/code><\/li><li><code>to_s<\/code>: Converts time to a string representation.<br \/>Time.now.to_s<br \/><strong>Ejemplo de salida:<\/strong> <code>2026-04-02 14:30:45 +0000<\/code><\/li><\/ul><h3><strong>Common Pitfalls and Best Practices<\/strong><\/h3><h5><strong>1. Avoiding Leading Zeros in Dates<\/strong><\/h5><p>If you want to remove leading zeros (e.g., 2 instead of <code>02<\/code> for a day), use:<\/p><pre>formatted_date = Time.now.strftime(\"%-d %B %Y\")\nputs formatted_date<\/pre><p><strong>Producci\u00f3n:<\/strong><\/p><p>2 April 2026<\/p><h5><strong>2. Ensuring Compatibility with Different Ruby Versions<\/strong><\/h5><p>Some older versions of Ruby might not support certain <code>strftime<\/code> format specifiers. Always test your format on the target Ruby version.<\/p><h5><strong>3. Using strftime in Rails Applications<\/strong><\/h5><p>In Rails, you can use <code>strftime<\/code> with Active Record\u2019s <code>created_at<\/code> o <code>updated_at<\/code> fields:<\/p><p>User.first.created_at.strftime(&#8220;%Y-%m-%d %H:%M:%S&#8221;)<\/p><h2><strong>Conclusi\u00f3n<\/strong><\/h2><p>En <code>strftime<\/code> function in Ruby is an essential tool for formatting date and time values. By mastering its various format specifiers, you can create custom timestamps, improve user readability, and ensure consistency across your <a href=\"https:\/\/www.railscarma.com\/es\/desarrollo-de-aplicaciones-moviles\/\">applications<\/a>. Whether you&#8217;re working with logs, reports, or user interfaces, <code>strftime<\/code> gives you the flexibility to format time exactly the way you need.<\/p><p>By applying best practices and understanding its full potential, you can make your <a href=\"https:\/\/www.railscarma.com\/es\/desarrollo-de-aplicaciones-de-rieles-personalizados\/\">Ruby applications<\/a> more robust and user-friendly. Happy coding!<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t  <div class=\"related-post slider\">\r\n        <div class=\"headline\">Art\u00edculos Relacionados<\/div>\r\n    <div class=\"post-list owl-carousel\">\r\n\r\n            <div class=\"item\">\r\n            <div class=\"thumb post_thumb\">\r\n    <a  title=\"Qu\u00e9 es Offliberty Ruby Gem y c\u00f3mo funciona\" href=\"https:\/\/www.railscarma.com\/es\/blog\/what-is-offliberty-ruby-gem-and-how-it-works\/?related_post_from=41304\">\r\n\r\n      <img decoding=\"async\" width=\"800\" height=\"300\" src=\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/What-is-Offliberty-Ruby-Gem-and-How-It-Works.png\" class=\"attachment-full size-full wp-post-image\" alt=\"Offliberty Ruby Gem\" srcset=\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/What-is-Offliberty-Ruby-Gem-and-How-It-Works.png 800w, https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/What-is-Offliberty-Ruby-Gem-and-How-It-Works-300x113.png 300w, https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/What-is-Offliberty-Ruby-Gem-and-How-It-Works-768x288.png 768w, https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/What-is-Offliberty-Ruby-Gem-and-How-It-Works-18x7.png 18w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\r\n\r\n    <\/a>\r\n  <\/div>\r\n\r\n  <a class=\"title post_title\"  title=\"Qu\u00e9 es Offliberty Ruby Gem y c\u00f3mo funciona\" href=\"https:\/\/www.railscarma.com\/es\/blog\/what-is-offliberty-ruby-gem-and-how-it-works\/?related_post_from=41304\">\r\n        Qu\u00e9 es Offliberty Ruby Gem y c\u00f3mo funciona  <\/a>\r\n\r\n        <\/div>\r\n              <div class=\"item\">\r\n            <div class=\"thumb post_thumb\">\r\n    <a  title=\"M\u00e9todo link_to de Rails: La gu\u00eda completa con ejemplos\" href=\"https:\/\/www.railscarma.com\/es\/blog\/rails-metodo-link_to-la-guia-completa-con-ejemplos\/?related_post_from=41296\">\r\n\r\n      <img decoding=\"async\" width=\"800\" height=\"300\" src=\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Rails-link_to-Method-The-Complete-Guide-with-Examples.png\" class=\"attachment-full size-full wp-post-image\" alt=\"M\u00e9todo link_to de Rails\" srcset=\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Rails-link_to-Method-The-Complete-Guide-with-Examples.png 800w, https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Rails-link_to-Method-The-Complete-Guide-with-Examples-300x113.png 300w, https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Rails-link_to-Method-The-Complete-Guide-with-Examples-768x288.png 768w, https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Rails-link_to-Method-The-Complete-Guide-with-Examples-18x7.png 18w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\r\n\r\n    <\/a>\r\n  <\/div>\r\n\r\n  <a class=\"title post_title\"  title=\"M\u00e9todo link_to de Rails: La gu\u00eda completa con ejemplos\" href=\"https:\/\/www.railscarma.com\/es\/blog\/rails-metodo-link_to-la-guia-completa-con-ejemplos\/?related_post_from=41296\">\r\n        M\u00e9todo link_to de Rails: La gu\u00eda completa con ejemplos  <\/a>\r\n\r\n        <\/div>\r\n              <div class=\"item\">\r\n            <div class=\"thumb post_thumb\">\r\n    <a  title=\"C\u00f3mo crear una plataforma SaaS escalable con Ruby on Rails\" href=\"https:\/\/www.railscarma.com\/es\/blog\/how-to-build-a-scalable-saas-platform-using-ruby-on-rails\/?related_post_from=41273\">\r\n\r\n      <img decoding=\"async\" width=\"800\" height=\"300\" src=\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Build-a-SaaS-Platform-Using-Ruby-on-Rails.png\" class=\"attachment-full size-full wp-post-image\" alt=\"Crear una plataforma SaaS con Ruby on Rails\" srcset=\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Build-a-SaaS-Platform-Using-Ruby-on-Rails.png 800w, https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Build-a-SaaS-Platform-Using-Ruby-on-Rails-300x113.png 300w, https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Build-a-SaaS-Platform-Using-Ruby-on-Rails-768x288.png 768w, https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Build-a-SaaS-Platform-Using-Ruby-on-Rails-18x7.png 18w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\r\n\r\n    <\/a>\r\n  <\/div>\r\n\r\n  <a class=\"title post_title\"  title=\"C\u00f3mo crear una plataforma SaaS escalable con Ruby on Rails\" href=\"https:\/\/www.railscarma.com\/es\/blog\/how-to-build-a-scalable-saas-platform-using-ruby-on-rails\/?related_post_from=41273\">\r\n        C\u00f3mo crear una plataforma SaaS escalable con Ruby on Rails  <\/a>\r\n\r\n        <\/div>\r\n              <div class=\"item\">\r\n            <div class=\"thumb post_thumb\">\r\n    <a  title=\"Ruby Regex Match Guide (2026) con Ejemplos\" href=\"https:\/\/www.railscarma.com\/es\/blog\/ruby-regex-match-guide-with-examples\/?related_post_from=41249\">\r\n\r\n      <img decoding=\"async\" width=\"800\" height=\"300\" src=\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Ruby-Regex-Match-Guide-with-Examples.png\" class=\"attachment-full size-full wp-post-image\" alt=\"Ruby Regex Match\" srcset=\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Ruby-Regex-Match-Guide-with-Examples.png 800w, https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Ruby-Regex-Match-Guide-with-Examples-300x113.png 300w, https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Ruby-Regex-Match-Guide-with-Examples-768x288.png 768w, https:\/\/www.railscarma.com\/wp-content\/uploads\/2026\/04\/Ruby-Regex-Match-Guide-with-Examples-18x7.png 18w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\r\n\r\n    <\/a>\r\n  <\/div>\r\n\r\n  <a class=\"title post_title\"  title=\"Ruby Regex Match Guide (2026) con Ejemplos\" href=\"https:\/\/www.railscarma.com\/es\/blog\/ruby-regex-match-guide-with-examples\/?related_post_from=41249\">\r\n        Ruby Regex Match Guide (2026) con Ejemplos  <\/a>\r\n\r\n        <\/div>\r\n      \r\n  <\/div>\r\n\r\n  <script>\r\n      <\/script>\r\n  <style>\r\n    .related-post {}\r\n\r\n    .related-post .post-list {\r\n      text-align: left;\r\n          }\r\n\r\n    .related-post .post-list .item {\r\n      margin: 10px;\r\n      padding: 10px;\r\n          }\r\n\r\n    .related-post .headline {\r\n      font-size: 14px !important;\r\n      color: #999999 !important;\r\n          }\r\n\r\n    .related-post .post-list .item .post_thumb {\r\n      max-height: 220px;\r\n      margin: 10px 0px;\r\n      padding: 0px;\r\n      display: block;\r\n          }\r\n\r\n    .related-post .post-list .item .post_title {\r\n      font-size: 14px;\r\n      color: #000000;\r\n      margin: 10px 0px;\r\n      padding: 0px;\r\n      display: block;\r\n      text-decoration: none;\r\n          }\r\n\r\n    .related-post .post-list .item .post_excerpt {\r\n      font-size: 12px;\r\n      color: #3f3f3f;\r\n      margin: 10px 0px;\r\n      padding: 0px;\r\n      display: block;\r\n      text-decoration: none;\r\n          }\r\n\r\n    .related-post .owl-dots .owl-dot {\r\n          }\r\n\r\n      <\/style>\r\n      <script>\r\n      jQuery(document).ready(function($) {\r\n        $(\".related-post .post-list\").owlCarousel({\r\n          items: 2,\r\n          responsiveClass: true,\r\n          responsive: {\r\n            0: {\r\n              items: 1,\r\n            },\r\n            768: {\r\n              items: 2,\r\n            },\r\n            1200: {\r\n              items: 2,\r\n            }\r\n          },\r\n                      rewind: true,\r\n                                loop: true,\r\n                                center: false,\r\n                                autoplay: true,\r\n            autoplayHoverPause: true,\r\n                                nav: true,\r\n            navSpeed: 1000,\r\n            navText: ['<i class=\"fas fa-chevron-left\"><\/i>', '<i class=\"fas fa-chevron-right\"><\/i>'],\r\n                                dots: false,\r\n            dotsSpeed: 1200,\r\n                                                    rtl: false,\r\n          \r\n        });\r\n      });\r\n    <\/script>\r\n  <\/div>","protected":false},"excerpt":{"rendered":"<p>Manejar la fecha y la hora es un aspecto crucial de la programaci\u00f3n, ya sea para registrar eventos, programar tareas o formatear marcas de tiempo para informes. En Ruby, la funci\u00f3n strftime es una poderosa herramienta que permite a los desarrolladores de rails formatear valores de fecha y hora en formatos legibles y personalizados. Este art\u00edculo explora c\u00f3mo funciona strftime, sus ...<\/p>\n<p class=\"read-more\"> <a class=\"\" href=\"https:\/\/www.railscarma.com\/es\/blog\/ruby-regex-match-guide-with-examples\/\"> <span class=\"screen-reader-text\">Ruby Regex Match Guide (2026) con Ejemplos<\/span> Leer m\u00e1s \u00bb<\/a><\/p>","protected":false},"author":5,"featured_media":39227,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1224],"tags":[],"class_list":["post-39207","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Time Formatting with strftime Function in Ruby - RailsCarma - Ruby on Rails Development Company specializing in Offshore Development<\/title>\n<meta name=\"description\" content=\"Learn how to format dates &amp; times in Ruby using the strftime function. Customize output with various format specifiers for better readability.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.railscarma.com\/es\/blog\/time-formatting-with-strftime-function-in-ruby\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Time Formatting with strftime Function in Ruby - RailsCarma - Ruby on Rails Development Company specializing in Offshore Development\" \/>\n<meta property=\"og:description\" content=\"Learn how to format dates &amp; times in Ruby using the strftime function. Customize output with various format specifiers for better readability.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.railscarma.com\/es\/blog\/time-formatting-with-strftime-function-in-ruby\/\" \/>\n<meta property=\"og:site_name\" content=\"RailsCarma - Ruby on Rails Development Company specializing in Offshore Development\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RailsCarma\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-02T06:21:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-01T05:21:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2025\/04\/Time-Formatting-with-strftime-Function-in-Ruby.png\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Nikhil\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@railscarma\" \/>\n<meta name=\"twitter:site\" content=\"@railscarma\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nikhil\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/\"},\"author\":{\"name\":\"Nikhil\",\"@id\":\"https:\/\/www.railscarma.com\/#\/schema\/person\/1aa0357392b349082303e8222c35c30c\"},\"headline\":\"Time Formatting with strftime Function in Ruby\",\"datePublished\":\"2025-04-02T06:21:07+00:00\",\"dateModified\":\"2026-01-01T05:21:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/\"},\"wordCount\":513,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.railscarma.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2025\/04\/Time-Formatting-with-strftime-Function-in-Ruby.png\",\"articleSection\":[\"Blogs\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/\",\"url\":\"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/\",\"name\":\"Time Formatting with strftime Function in Ruby - RailsCarma - Ruby on Rails Development Company specializing in Offshore Development\",\"isPartOf\":{\"@id\":\"https:\/\/www.railscarma.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2025\/04\/Time-Formatting-with-strftime-Function-in-Ruby.png\",\"datePublished\":\"2025-04-02T06:21:07+00:00\",\"dateModified\":\"2026-01-01T05:21:32+00:00\",\"description\":\"Learn how to format dates & times in Ruby using the strftime function. Customize output with various format specifiers for better readability.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#primaryimage\",\"url\":\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2025\/04\/Time-Formatting-with-strftime-Function-in-Ruby.png\",\"contentUrl\":\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2025\/04\/Time-Formatting-with-strftime-Function-in-Ruby.png\",\"width\":800,\"height\":300,\"caption\":\"strftime Ruby\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.railscarma.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Time Formatting with strftime Function in Ruby\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.railscarma.com\/#website\",\"url\":\"https:\/\/www.railscarma.com\/\",\"name\":\"RailsCarma - Ruby on Rails Development Company specializing in Offshore Development\",\"description\":\"RailsCarma is a Ruby on Rails Development Company in Bangalore. We specialize in Offshore Ruby on Rails Development based out in USA and India. Hire experienced Ruby on Rails developers for the ultimate Web Experience.\",\"publisher\":{\"@id\":\"https:\/\/www.railscarma.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.railscarma.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.railscarma.com\/#organization\",\"name\":\"RailsCarma\",\"url\":\"https:\/\/www.railscarma.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.railscarma.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2020\/08\/railscarma_logo.png\",\"contentUrl\":\"https:\/\/www.railscarma.com\/wp-content\/uploads\/2020\/08\/railscarma_logo.png\",\"width\":200,\"height\":46,\"caption\":\"RailsCarma\"},\"image\":{\"@id\":\"https:\/\/www.railscarma.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RailsCarma\/\",\"https:\/\/x.com\/railscarma\",\"https:\/\/www.linkedin.com\/company\/railscarma\/\",\"https:\/\/myspace.com\/railscarma\",\"https:\/\/in.pinterest.com\/railscarma\/\",\"https:\/\/www.youtube.com\/channel\/UCx3Wil-aAnDARuatTEyMdpg\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.railscarma.com\/#\/schema\/person\/1aa0357392b349082303e8222c35c30c\",\"name\":\"Nikhil\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.railscarma.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/054f31ff35e9917aaf631b8025ef679d42dd21792012d451763138d66d02a4c0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/054f31ff35e9917aaf631b8025ef679d42dd21792012d451763138d66d02a4c0?s=96&d=mm&r=g\",\"caption\":\"Nikhil\"},\"sameAs\":[\"https:\/\/www.railscarma.com\/hire-ruby-on-rails-developer\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Time Formatting with strftime Function in Ruby - RailsCarma - Ruby on Rails Development Company specializing in Offshore Development","description":"Learn how to format dates & times in Ruby using the strftime function. Customize output with various format specifiers for better readability.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.railscarma.com\/es\/blog\/time-formatting-with-strftime-function-in-ruby\/","og_locale":"es_ES","og_type":"article","og_title":"Time Formatting with strftime Function in Ruby - RailsCarma - Ruby on Rails Development Company specializing in Offshore Development","og_description":"Learn how to format dates & times in Ruby using the strftime function. Customize output with various format specifiers for better readability.","og_url":"https:\/\/www.railscarma.com\/es\/blog\/time-formatting-with-strftime-function-in-ruby\/","og_site_name":"RailsCarma - Ruby on Rails Development Company specializing in Offshore Development","article_publisher":"https:\/\/www.facebook.com\/RailsCarma\/","article_published_time":"2025-04-02T06:21:07+00:00","article_modified_time":"2026-01-01T05:21:32+00:00","og_image":[{"width":800,"height":300,"url":"https:\/\/www.railscarma.com\/wp-content\/uploads\/2025\/04\/Time-Formatting-with-strftime-Function-in-Ruby.png","type":"image\/png"}],"author":"Nikhil","twitter_card":"summary_large_image","twitter_creator":"@railscarma","twitter_site":"@railscarma","twitter_misc":{"Escrito por":"Nikhil","Tiempo de lectura":"3 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#article","isPartOf":{"@id":"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/"},"author":{"name":"Nikhil","@id":"https:\/\/www.railscarma.com\/#\/schema\/person\/1aa0357392b349082303e8222c35c30c"},"headline":"Time Formatting with strftime Function in Ruby","datePublished":"2025-04-02T06:21:07+00:00","dateModified":"2026-01-01T05:21:32+00:00","mainEntityOfPage":{"@id":"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/"},"wordCount":513,"commentCount":0,"publisher":{"@id":"https:\/\/www.railscarma.com\/#organization"},"image":{"@id":"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#primaryimage"},"thumbnailUrl":"https:\/\/www.railscarma.com\/wp-content\/uploads\/2025\/04\/Time-Formatting-with-strftime-Function-in-Ruby.png","articleSection":["Blogs"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/","url":"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/","name":"Time Formatting with strftime Function in Ruby - RailsCarma - Ruby on Rails Development Company specializing in Offshore Development","isPartOf":{"@id":"https:\/\/www.railscarma.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#primaryimage"},"image":{"@id":"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#primaryimage"},"thumbnailUrl":"https:\/\/www.railscarma.com\/wp-content\/uploads\/2025\/04\/Time-Formatting-with-strftime-Function-in-Ruby.png","datePublished":"2025-04-02T06:21:07+00:00","dateModified":"2026-01-01T05:21:32+00:00","description":"Learn how to format dates & times in Ruby using the strftime function. Customize output with various format specifiers for better readability.","breadcrumb":{"@id":"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#primaryimage","url":"https:\/\/www.railscarma.com\/wp-content\/uploads\/2025\/04\/Time-Formatting-with-strftime-Function-in-Ruby.png","contentUrl":"https:\/\/www.railscarma.com\/wp-content\/uploads\/2025\/04\/Time-Formatting-with-strftime-Function-in-Ruby.png","width":800,"height":300,"caption":"strftime Ruby"},{"@type":"BreadcrumbList","@id":"https:\/\/www.railscarma.com\/blog\/time-formatting-with-strftime-function-in-ruby\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.railscarma.com\/"},{"@type":"ListItem","position":2,"name":"Time Formatting with strftime Function in Ruby"}]},{"@type":"WebSite","@id":"https:\/\/www.railscarma.com\/#website","url":"https:\/\/www.railscarma.com\/","name":"RailsCarma - Empresa de desarrollo Ruby on Rails especializada en desarrollo offshore","description":"RailsCarma es una empresa de desarrollo de Ruby on Rails en Bangalore. Nos especializamos en el desarrollo offshore de Ruby on Rails con sede en EE. UU. e India. Contrate desarrolladores experimentados de Ruby on Rails para disfrutar de la mejor experiencia web.","publisher":{"@id":"https:\/\/www.railscarma.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.railscarma.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/www.railscarma.com\/#organization","name":"RielesCarma","url":"https:\/\/www.railscarma.com\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.railscarma.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.railscarma.com\/wp-content\/uploads\/2020\/08\/railscarma_logo.png","contentUrl":"https:\/\/www.railscarma.com\/wp-content\/uploads\/2020\/08\/railscarma_logo.png","width":200,"height":46,"caption":"RailsCarma"},"image":{"@id":"https:\/\/www.railscarma.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RailsCarma\/","https:\/\/x.com\/railscarma","https:\/\/www.linkedin.com\/company\/railscarma\/","https:\/\/myspace.com\/railscarma","https:\/\/in.pinterest.com\/railscarma\/","https:\/\/www.youtube.com\/channel\/UCx3Wil-aAnDARuatTEyMdpg"]},{"@type":"Person","@id":"https:\/\/www.railscarma.com\/#\/schema\/person\/1aa0357392b349082303e8222c35c30c","name":"Nikhil","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.railscarma.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/054f31ff35e9917aaf631b8025ef679d42dd21792012d451763138d66d02a4c0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/054f31ff35e9917aaf631b8025ef679d42dd21792012d451763138d66d02a4c0?s=96&d=mm&r=g","caption":"Nikhil"},"sameAs":["https:\/\/www.railscarma.com\/hire-ruby-on-rails-developer\/"]}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.railscarma.com\/es\/wp-json\/wp\/v2\/posts\/39207","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.railscarma.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.railscarma.com\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.railscarma.com\/es\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.railscarma.com\/es\/wp-json\/wp\/v2\/comments?post=39207"}],"version-history":[{"count":0,"href":"https:\/\/www.railscarma.com\/es\/wp-json\/wp\/v2\/posts\/39207\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.railscarma.com\/es\/wp-json\/wp\/v2\/media\/39227"}],"wp:attachment":[{"href":"https:\/\/www.railscarma.com\/es\/wp-json\/wp\/v2\/media?parent=39207"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.railscarma.com\/es\/wp-json\/wp\/v2\/categories?post=39207"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.railscarma.com\/es\/wp-json\/wp\/v2\/tags?post=39207"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}