gojalaali
is a Go package that provides implementation of Jalaali (Persian) calendar for standard go time
interface. It supports standard Go time package layout for formatting and parsing jalaali dates and times, as well as converting between Jalaali and Gregorian dates.
To install the package, use the following command:
go get github.com/mekramy/gojalaali
Here is an example of how to use the gojalaali
package:
package main
import (
"fmt"
"time"
"github.com/mekramy/gojalaali"
)
func main() {
// Create a new Jalaali date from the current time
j := gojalaali.Now()
// Print the Jalaali date
fmt.Println("Current Jalaali date:", j)
// Convert Jalaali date to Gregorian date
gregorian := j.Time()
fmt.Println("Gregorian date:", gregorian)
// Parse a Jalaali date from a string
layout := "2006-01-02 15:04:05"
datetime := "1400-07-01 12:30:45"
parsedJalaali, err := gojalaali.Parse(layout, datetime)
if err != nil {
fmt.Println("Error parsing Jalaali date:", err)
return
}
fmt.Println("Parsed Jalaali date:", parsedJalaali)
}
Parses a Jalaali date from a string according to the specified layout. Returns a Jalaali instance and an error if the parsing fails.
Example:
layout := "2006-01-02 15:04:05"
datetime := "1400-07-01 12:30:45"
parsedJalaali, err := gojalaali.Parse(layout, datetime)
if err != nil {
fmt.Println("Error parsing Jalaali date:", err)
return
}
fmt.Println("Parsed Jalaali date:", parsedJalaali)
Creates a new Jalaali instance from a Go time.Time
object. If the year is less than 1097, it returns a zero time instance.
Example:
t := time.Now()
j := gojalaali.New(t)
fmt.Println("Jalaali date:", j)
Creates a new Jalaali instance from the specified Jalaali date and time components.
Example:
j := gojalaali.Date(1400, gojalaali.Mehr, 1, 12, 30, 45, 0, gojalaali.TehranTz())
fmt.Println("Jalaali date:", j)
Creates a new Jalaali instance from a Unix timestamp.
Example:
sec := time.Now().Unix()
nsec := int64(0)
j := gojalaali.Unix(sec, nsec)
fmt.Println("Jalaali date:", j)
Creates a new Jalaali instance from the current time.
Example:
j := gojalaali.Now()
fmt.Println("Current Jalaali date:", j)
Returns the time zone for Tehran.
Example:
tehranTz := gojalaali.TehranTz()
fmt.Println("Tehran time zone:", tehranTz)
Returns the time zone for Kabul.
Example:
kabulTz := gojalaali.KabulTz()
fmt.Println("Kabul time zone:", kabulTz)
Returns true if the Jalaali date is a zero time instance.
Returns true if the year of the Jalaali date is a leap year.
Returns the number of seconds between the current Jalaali date and another Jalaali date t2
.
Returns the 12-hour marker (AM/PM) of the Jalaali date.
Returns the time zone name and its offset in seconds east of UTC for the Jalaali date.
Sets the location of the Jalaali date and returns a new instance. If loc
is nil, it returns the same instance.
Adds a duration to the Jalaali date and returns a new instance.
Adds the specified hours, minutes, seconds, and nanoseconds to the Jalaali date and returns a new instance.
Adds the specified years, months, and days to the Jalaali date and returns a new instance.
Adds the specified years, months, days, hours, minutes, seconds, and nanoseconds to the Jalaali date and returns a new instance.
Returns a new instance of the Jalaali date representing the day before the current instance.
Returns a new instance of the Jalaali date representing the day after the current instance.
Returns a new instance of the Jalaali date representing the 00:00:00.000000000 time of today.
Returns a new instance of the Jalaali date representing the 23:59:59.999999999 time of today.
Returns a new instance of the Jalaali date representing the first day of the week of the current instance.
Returns a new instance of the Jalaali date representing the last day of the week of the current instance.
Returns a new instance of the Jalaali date representing the first day of the week of the current instance, with the time set to 00:00:00.000000000.
Returns a new instance of the Jalaali date representing the last day of the week of the current instance, with the time set to 23:59:59.999999999.
Returns a new instance of the Jalaali date representing the first day of the month of the current instance.
Returns a new instance of the Jalaali date representing the last day of the month of the current instance.
Returns a new instance of the Jalaali date representing the first day of the month of the current instance, with the time set to 00:00:00.000000000.
Returns a new instance of the Jalaali date representing the last day of the month of the current instance, with the time set to 23:59:59.999999999.
Returns a new instance of the Jalaali date representing the first day of the year of the current instance.
Returns a new instance of the Jalaali date representing the last day of the year of the current instance.
Returns a new instance of the Jalaali date representing the first day of the year of the current instance, with the time set to 00:00:00.000000000.
Returns a new instance of the Jalaali date representing the last day of the year of the current instance, with the time set to 23:59:59.999999999.
Sets the year of the Jalaali date.
Sets the month of the Jalaali date.
Sets the day of the Jalaali date.
Sets the hour of the Jalaali time.
Sets the minute of the Jalaali time.
Sets the second of the Jalaali time.
Sets the nanosecond of the Jalaali time.
Sets the hour, minute, second, and nanosecond of the Jalaali time. Pass -1 to ignore a parameter.
Sets the year, month, and day of the Jalaali date. Pass -1 to ignore a parameter.
Sets the year, month, day, hour, minute, second, and nanosecond of the Jalaali date and time. Pass -1 to ignore a parameter.
Returns the year of the Jalaali date.
Returns the day of the year of the Jalaali date.
Returns the number of remaining days in the year of the Jalaali date.
Returns the month of the Jalaali date in the range [1, 12].
Returns the weekday of the Jalaali date.
Returns the week of the month of the Jalaali date.
Returns the week of the year of the Jalaali date.
Returns the number of remaining weeks in the year of the Jalaali date.
Returns the day of the month of the Jalaali date.
Returns the number of remaining days in the month of the Jalaali date.
Returns the hour of the Jalaali time in the range [0, 23].
Returns the hour of the Jalaali time in the range [0, 11].
Returns the minute of the Jalaali time in the range [0, 59].
Returns the second of the Jalaali time in the range [0, 59].
Returns the nanosecond of the Jalaali time in the range [0, 999999999].
Returns the part of the day for the Jalaali time.
Returns a pointer to the time location of the Jalaali date.
Returns the year, month, and day of the Jalaali date.
Returns the hour, minute, and second of the Jalaali time.
Returns the number of seconds since January 1, 1970 UTC.
Returns the number of nanoseconds since January 1, 1970 UTC.
Converts the Jalaali date to a Gregorian date and returns it as a Go time.Time
object.
Returns the Jalaali date in RFC3339 format.
Formats the Jalaali date according to the specified layout.
Layout | Description | Example |
---|---|---|
Year | ||
2006 | Four-digit year | "1403" |
06 | Two-digit year | "03" |
Month | ||
January | Full month name | "اسفند" |
Jan | Three-letter abbreviation of the month | "اسف" |
01 | Two-digit month with a leading 0 | "07" |
1 | One-digit month | "7" |
Day | ||
02 | Two-digit month day with a leading 0 | "08" |
_2 | Two-digit month day with a leading space | " 9" |
2 | One-digit month day | "3" |
Weekday | ||
Monday | Full weekday name | "شنبه" |
Mon | Abbreviation of the weekday | "ش" |
Hour | ||
15 | Two-digit 24 hour format | "15" |
03 | Two-digit 12 hour format | "03" |
3 | One-digit 12 hour format | "9" |
Minute | ||
04 | Two-digit minute with leading 0 | "03" |
4 | One-digit minute | "3" |
Second | ||
05 | Two-digit second with leading 0 | "09" |
5 | One-digit second | "2" |
Milliseconds | ||
.000 | Millisecond | ".120" |
.000000 | Microsecond | ".123400" |
.000000000 | Nanosecond | ".123456000" |
.999 | Trailing zeros removed millisecond | ".12" |
.999999 | Trailing zeros removed microsecond | ".1234" |
.999999999 | Trailing zeros removed nanosecond | ".123456" |
Daytime | ||
Morning | Day time | "صبح" |
PM | Full 12-Hour marker | "قبل از ظهر" |
pm | Short 12-Hour marker | "ق.ظ" |
Timezone | ||
MST | Abbreviation of the time zone | "UTC" |
Z070000 | Zone offset Hour, Minute and second | "Z" or "+033000" |
Z0700 | Zone offset Hour and Minute | "Z" or "+0330" |
Z07:00:00 | Zone offset Hour, Minute and second | "Z" or "+03:30:00" |
Z07:00 | Zone offset Hour and Minute | "Z" or "+03:30" |
Z07 | Zone offset Hour | "Z" or "+03" |
-070000 | Zone offset Hour, Minute and second | "+033000" |
-0700 | Zone offset Hour and Minute | "+0330" |
-07:00:00 | Zone offset Hour, Minute and second | "+03:30:00" |
-07:00 | Zone offset Hour and Minute | "+03:30" |
-07 | Zone offset Hour | "+03" |
This package jalaali conversion inspired from github.com/yaa110/go-persian-calendar
library.