| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972 |
- // Copyright 2016 - 2023 The excelize Authors. All rights reserved. Use of
- // this source code is governed by a BSD-style license that can be found in
- // the LICENSE file.
- //
- // Package excelize providing a set of functions that allow you to write to and
- // read from XLAM / XLSM / XLSX / XLTM / XLTX files. Supports reading and
- // writing spreadsheet documents generated by Microsoft Excel™ 2007 and later.
- // Supports complex components by high compatibility, and provided streaming
- // API for generating or reading data from a worksheet with huge amounts of
- // data. This library needs Go version 1.16 or later.
- package excelize
- import (
- "fmt"
- "math"
- "strconv"
- "strings"
- "time"
- "github.com/xuri/nfp"
- )
- // languageInfo defined the required fields of localization support for number format.
- type languageInfo struct {
- apFmt string
- tags []string
- localMonth func(t time.Time, abbr int) string
- }
- // numberFormat directly maps the number format parser runtime required
- // fields.
- type numberFormat struct {
- section []nfp.Section
- t time.Time
- sectionIdx int
- date1904, isNumeric, hours, seconds bool
- number float64
- ap, localCode, result, value, valueSectionType string
- }
- var (
- // supportedTokenTypes list the supported number format token types currently.
- supportedTokenTypes = []string{
- nfp.TokenSubTypeLanguageInfo,
- nfp.TokenTypeColor,
- nfp.TokenTypeCurrencyLanguage,
- nfp.TokenTypeDateTimes,
- nfp.TokenTypeElapsedDateTimes,
- nfp.TokenTypeGeneral,
- nfp.TokenTypeLiteral,
- nfp.TokenTypeTextPlaceHolder,
- nfp.TokenTypeZeroPlaceHolder,
- }
- // supportedLanguageInfo directly maps the supported language ID and tags.
- supportedLanguageInfo = map[string]languageInfo{
- "36": {tags: []string{"af"}, localMonth: localMonthsNameAfrikaans, apFmt: apFmtAfrikaans},
- "445": {tags: []string{"bn-IN"}, localMonth: localMonthsNameBangla, apFmt: nfp.AmPm[0]},
- "4": {tags: []string{"zh-Hans"}, localMonth: localMonthsNameChinese1, apFmt: nfp.AmPm[2]},
- "7804": {tags: []string{"zh"}, localMonth: localMonthsNameChinese1, apFmt: nfp.AmPm[2]},
- "804": {tags: []string{"zh-CN"}, localMonth: localMonthsNameChinese1, apFmt: nfp.AmPm[2]},
- "1004": {tags: []string{"zh-SG"}, localMonth: localMonthsNameChinese2, apFmt: nfp.AmPm[2]},
- "7C04": {tags: []string{"zh-Hant"}, localMonth: localMonthsNameChinese3, apFmt: nfp.AmPm[2]},
- "C04": {tags: []string{"zh-HK"}, localMonth: localMonthsNameChinese2, apFmt: nfp.AmPm[2]},
- "1404": {tags: []string{"zh-MO"}, localMonth: localMonthsNameChinese3, apFmt: nfp.AmPm[2]},
- "404": {tags: []string{"zh-TW"}, localMonth: localMonthsNameChinese3, apFmt: nfp.AmPm[2]},
- "9": {tags: []string{"en"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "1000": {tags: []string{
- "aa", "aa-DJ", "aa-ER", "aa-ER", "aa-NA", "agq", "agq-CM", "ak", "ak-GH", "sq-ML",
- "gsw-LI", "gsw-CH", "ar-TD", "ar-KM", "ar-DJ", "ar-ER", "ar-IL", "ar-MR", "ar-PS",
- "ar-SO", "ar-SS", "ar-SD", "ar-001", "ast", "ast-ES", "asa", "asa-TZ", "ksf", "ksf-CM",
- "bm", "bm-Latn-ML", "bas", "bas-CM", "bem", "bem-ZM", "bez", "bez-TZ", "byn", "byn-ER",
- "brx", "brx-IN", "ca-AD", "ca-FR", "ca-IT", "ceb", "ceb-Latn", "ceb-Latn-PH", "tzm-Latn-MA",
- "ccp", "ccp-Cakm", "ccp-Cakm-BD", "ccp-Cakm-IN", "ce-RU", "cgg", "cgg-UG", "cu-RU", "swc",
- "swc-CD", "kw", "ke-GB", "da-GL", "dua", "dua-CM", "nl-AW", "nl-BQ", "nl-CW", "nl-SX",
- "nl-SR", "dz", "ebu", "ebu-KE", "en-AS", "en-AI", "en-AG", "en-AT", "en-BS", "en-BB",
- "en-BE", "en-BM", "en-BW", "en-IO", "en-VG", "en-BI", "en-CM", "en-KY", "en-CX", "en-CC",
- "en-CK", "en-CY", "en-DK", "en-DM", "en-ER", "en-150", "en-FK", "en-FI", "en-FJ", "en-GM",
- "en-DE", "en-GH", "en-GI", "en-GD", "en-GU", "en-GG", "en-GY", "en-IM", "en-IL", "en-JE",
- "en-KE", "en-KI", "en-LS", "en-LR", "en-MO", "en-MG", "en-MW", "en-MT", "en-MH", "en-MU",
- "en-FM", "en-MS", "en-NA", "en-NR", "en-NL", "en-NG", "en-NU", "en-NF", "en-MP", "en-PK",
- "en-PW", "en-PG", "en-PN", "en-PR", "en-RW", "en-KN", "en-LC", "en-VC", "en-WS", "en-SC",
- "en-SL", "en-SX", "en-SI", "en-SB", "en-SS", "en-SH", "en-SD", "en-SZ", "en-SE", "en-CH",
- "en-TZ", "en-TK", "en-TO", "en-TC", "en-TV", "en-UG", "en-UM", "en-VI", "en-VU", "en-001",
- "en-ZM", "eo", "eo-001", "ee", "ee-GH", "ee-TG", "ewo", "ewo-CM", "fo-DK", "fr-DZ",
- "fr-BJ", "fr-BF", "fr-BI", "fr-CF", "fr-TD", "fr-KM", "fr-CG", "fr-DJ", "fr-GQ", "fr-GF",
- "fr-PF", "fr-GA", "fr-GP", "fr-GN", "fr-MG", "fr-MQ", "fr-MR", "fr-MU", "fr-YT", "fr-NC",
- "fr-NE", "fr-RW", "fr-BL", "fr-MF", "fr-PM", "fr-SC", "fr-SY", "fr-TG", "fr-TN", "fr-VU",
- "fr-WF", "fur", "fur-IT", "ff-Latn-BF", "ff-CM", "ff-Latn-CM", "ff-Latn-GM", "ff-Latn-GH",
- "ff-GN", "ff-Latn-GN", "ff-Latn-GW", "ff-Latn-LR", "ff-MR", "ff-Latn-MR", "ff-Latn-NE",
- "ff-Latn-SL", "lg", "lg-UG", "de-BE", "de-IT", "el-CY", "guz", "guz-KE", "ha-Latn-GH",
- "ha-Latn-NG", "ia-FR", "ia-001", "it-SM", "it-VA", "jv", "jv-Latn", "jv-Latn-ID", "dyo",
- "dyo-SN", "kea", "kea-CV", "kab", "kab-DZ", "kkj", "kkj-CM", "kln", "kln-KE", "kam",
- "kam-KE", "ks-Arab-IN", "ki", "ki-KE", "sw-TZ", "sw-UG", "ko-KP", "khq", "khq-ML", "ses",
- "ses-ML", "nmg", "nmq-CM", "ku-Arab-IR", "lkt", "lkt-US", "lag", "lag-TZ", "ln", "ln-AO",
- "ln-CF", "ln-CD", "nds", "nds-DE", "nds-NL", "lu", "lu-CD", "luo", "luo", "luo-KE", "luy",
- "luy-KE", "jmc", "jmc-TZ", "mgh", "mgh-MZ", "kde", "kde-TZ", "mg", "mg-MG", "gv", "gv-IM",
- "mas", "mas-KE", "mas-TZ", "mas-IR", "mer", "mer-KE", "mgo", "mgo-CM", "mfe", "mfe-MU",
- "mua", "mua-CM", "nqo", "nqo-GN", "nqa", "naq-NA", "nnh", "nnh-CM", "jgo", "jgo-CM",
- "lrc-IQ", "lrc-IR", "nd", "nd-ZW", "nb-SJ", "nus", "nus-SD", "nus-SS", "nyn", "nyn-UG",
- "om-KE", "os", "os-GE", "os-RU", "ps-PK", "fa-AF", "pt-AO", "pt-CV", "pt-GQ", "pt-GW",
- "pt-LU", "pt-MO", "pt-MZ", "pt-ST", "pt-CH", "pt-TL", "prg-001", "ksh", "ksh-DE", "rof",
- "rof-TZ", "rn", "rn-BI", "ru-BY", "ru-KZ", "ru-KG", "ru-UA", "rwk", "rwk-TZ", "ssy",
- "ssy-ER", "saq", "saq-KE", "sg", "sq-CF", "sbp", "sbp-TZ", "seh", "seh-MZ", "ksb", "ksb-TZ",
- "sn", "sn-Latn", "sn-Latn-ZW", "xog", "xog-UG", "so-DJ", "so-ET", "so-KE", "nr", "nr-ZA",
- "st-LS", "es-BZ", "es-BR", "es-PH", "zgh", "zgh-Tfng-MA", "zgh-Tfng", "ss", "ss-ZA",
- "ss-SZ", "sv-AX", "shi", "shi-Tfng", "shi-Tfng-MA", "shi-Latn", "shi-Latn-MA", "dav",
- "dav-KE", "ta-MY", "ta-SG", "twq", "twq-NE", "teo", "teo-KE", "teo-UG", "bo-IN", "tig",
- "tig-ER", "to", "to-TO", "tr-CY", "uz-Arab", "us-Arab-AF", "vai", "vai-Vaii",
- "vai-Vaii-LR", "vai-Latn-LR", "vai-Latn", "vo", "vo-001", "vun", "vun-TZ", "wae",
- "wae-CH", "wal", "wae-ET", "yav", "yav-CM", "yo-BJ", "dje", "dje-NE",
- }, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "C09": {tags: []string{"en-AU"}, localMonth: localMonthsNameEnglish, apFmt: strings.ToLower(nfp.AmPm[0])},
- "2829": {tags: []string{"en-BZ"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "1009": {tags: []string{"en-CA"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "2409": {tags: []string{"en-029"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "3C09": {tags: []string{"en-HK"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "4009": {tags: []string{"en-IN"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "1809": {tags: []string{"en-IE"}, localMonth: localMonthsNameEnglish, apFmt: strings.ToLower(nfp.AmPm[0])},
- "2009": {tags: []string{"en-JM"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "4409": {tags: []string{"en-MY"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "1409": {tags: []string{"en-NZ"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "3409": {tags: []string{"en-PH"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "4809": {tags: []string{"en-SG"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "1C09": {tags: []string{"en-ZA"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "2C09": {tags: []string{"en-TT"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "4C09": {tags: []string{"en-AE"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "809": {tags: []string{"en-GB"}, localMonth: localMonthsNameEnglish, apFmt: strings.ToLower(nfp.AmPm[0])},
- "409": {tags: []string{"en-US"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "3009": {tags: []string{"en-ZW"}, localMonth: localMonthsNameEnglish, apFmt: nfp.AmPm[0]},
- "C": {tags: []string{"fr"}, localMonth: localMonthsNameFrench, apFmt: nfp.AmPm[0]},
- "7": {tags: []string{"de"}, localMonth: localMonthsNameGerman, apFmt: nfp.AmPm[0]},
- "C07": {tags: []string{"de-AT"}, localMonth: localMonthsNameAustria, apFmt: nfp.AmPm[0]},
- "407": {tags: []string{"de-DE"}, localMonth: localMonthsNameGerman, apFmt: nfp.AmPm[0]},
- "3C": {tags: []string{"ga"}, localMonth: localMonthsNameIrish, apFmt: apFmtIrish},
- "83C": {tags: []string{"ga-IE"}, localMonth: localMonthsNameIrish, apFmt: apFmtIrish},
- "10": {tags: []string{"it"}, localMonth: localMonthsNameItalian, apFmt: nfp.AmPm[0]},
- "11": {tags: []string{"ja"}, localMonth: localMonthsNameChinese3, apFmt: apFmtJapanese},
- "411": {tags: []string{"ja-JP"}, localMonth: localMonthsNameChinese3, apFmt: apFmtJapanese},
- "12": {tags: []string{"ko"}, localMonth: localMonthsNameKorean, apFmt: apFmtKorean},
- "412": {tags: []string{"ko-KR"}, localMonth: localMonthsNameKorean, apFmt: apFmtKorean},
- "7C50": {tags: []string{"mn-Mong"}, localMonth: localMonthsNameTraditionalMongolian, apFmt: nfp.AmPm[0]},
- "850": {tags: []string{"mn-Mong-CN"}, localMonth: localMonthsNameTraditionalMongolian, apFmt: nfp.AmPm[0]},
- "C50": {tags: []string{"mn-Mong-MN"}, localMonth: localMonthsNameTraditionalMongolian, apFmt: nfp.AmPm[0]},
- "19": {tags: []string{"ru"}, localMonth: localMonthsNameRussian, apFmt: nfp.AmPm[0]},
- "819": {tags: []string{"ru-MD"}, localMonth: localMonthsNameRussian, apFmt: nfp.AmPm[0]},
- "419": {tags: []string{"ru-RU"}, localMonth: localMonthsNameRussian, apFmt: nfp.AmPm[0]},
- "A": {tags: []string{"es"}, localMonth: localMonthsNameSpanish, apFmt: apFmtSpanish},
- "2C0A": {tags: []string{"es-AR"}, localMonth: localMonthsNameSpanish, apFmt: apFmtSpanish},
- "200A": {tags: []string{"es-VE"}, localMonth: localMonthsNameSpanish, apFmt: apFmtSpanish},
- "400A": {tags: []string{"es-BO"}, localMonth: localMonthsNameSpanish, apFmt: apFmtSpanish},
- "340A": {tags: []string{"es-CL"}, localMonth: localMonthsNameSpanish, apFmt: apFmtSpanish},
- "240A": {tags: []string{"es-CO"}, localMonth: localMonthsNameSpanish, apFmt: apFmtSpanish},
- "140A": {tags: []string{"es-CR"}, localMonth: localMonthsNameSpanish, apFmt: apFmtSpanish},
- "5C0A": {tags: []string{"es-CU"}, localMonth: localMonthsNameSpanish, apFmt: apFmtCuba},
- "1C0A": {tags: []string{"es-DO"}, localMonth: localMonthsNameSpanish, apFmt: apFmtSpanish},
- "300A": {tags: []string{"es-EC"}, localMonth: localMonthsNameSpanish, apFmt: apFmtSpanish},
- "440A": {tags: []string{"es-SV"}, localMonth: localMonthsNameSpanish, apFmt: apFmtSpanish},
- "1E": {tags: []string{"th"}, localMonth: localMonthsNameThai, apFmt: nfp.AmPm[0]},
- "41E": {tags: []string{"th-TH"}, localMonth: localMonthsNameThai, apFmt: nfp.AmPm[0]},
- "51": {tags: []string{"bo"}, localMonth: localMonthsNameTibetan, apFmt: apFmtTibetan},
- "451": {tags: []string{"bo-CN"}, localMonth: localMonthsNameTibetan, apFmt: apFmtTibetan},
- "1F": {tags: []string{"tr"}, localMonth: localMonthsNameTurkish, apFmt: apFmtTurkish},
- "41F": {tags: []string{"tr-TR"}, localMonth: localMonthsNameTurkish, apFmt: apFmtTurkish},
- "52": {tags: []string{"cy"}, localMonth: localMonthsNameWelsh, apFmt: apFmtWelsh},
- "452": {tags: []string{"cy-GB"}, localMonth: localMonthsNameWelsh, apFmt: apFmtWelsh},
- "2A": {tags: []string{"vi"}, localMonth: localMonthsNameVietnamese, apFmt: apFmtVietnamese},
- "42A": {tags: []string{"vi-VN"}, localMonth: localMonthsNameVietnamese, apFmt: apFmtVietnamese},
- "88": {tags: []string{"wo"}, localMonth: localMonthsNameWolof, apFmt: apFmtWolof},
- "488": {tags: []string{"wo-SN"}, localMonth: localMonthsNameWolof, apFmt: apFmtWolof},
- "34": {tags: []string{"xh"}, localMonth: localMonthsNameXhosa, apFmt: nfp.AmPm[0]},
- "434": {tags: []string{"xh-ZA"}, localMonth: localMonthsNameXhosa, apFmt: nfp.AmPm[0]},
- "78": {tags: []string{"ii"}, localMonth: localMonthsNameYi, apFmt: apFmtYi},
- "478": {tags: []string{"ii-CN"}, localMonth: localMonthsNameYi, apFmt: apFmtYi},
- "35": {tags: []string{"zu"}, localMonth: localMonthsNameZulu, apFmt: nfp.AmPm[0]},
- "435": {tags: []string{"zu-ZA"}, localMonth: localMonthsNameZulu, apFmt: nfp.AmPm[0]},
- }
- // monthNamesBangla list the month names in the Bangla.
- monthNamesBangla = []string{
- "\u099C\u09BE\u09A8\u09C1\u09AF\u09BC\u09BE\u09B0\u09C0",
- "\u09AB\u09C7\u09AC\u09CD\u09B0\u09C1\u09AF\u09BC\u09BE\u09B0\u09C0",
- "\u09AE\u09BE\u09B0\u09CD\u099A",
- "\u098F\u09AA\u09CD\u09B0\u09BF\u09B2",
- "\u09AE\u09C7",
- "\u099C\u09C1\u09A8",
- "\u099C\u09C1\u09B2\u09BE\u0987",
- "\u0986\u0997\u09B8\u09CD\u099F",
- "\u09B8\u09C7\u09AA\u09CD\u099F\u09C7\u09AE\u09CD\u09AC\u09B0",
- "\u0985\u0995\u09CD\u099F\u09CB\u09AC\u09B0",
- "\u09A8\u09AD\u09C7\u09AE\u09CD\u09AC\u09B0",
- "\u09A1\u09BF\u09B8\u09C7\u09AE\u09CD\u09AC\u09B0",
- }
- // monthNamesAfrikaans list the month names in the Afrikaans.
- monthNamesAfrikaans = []string{"Januarie", "Februarie", "Maart", "April", "Mei", "Junie", "Julie", "Augustus", "September", "Oktober", "November", "Desember"}
- // monthNamesAfrikaansAbbr lists the month name abbreviations in Afrikaans
- monthNamesAfrikaansAbbr = []string{"Jan.", "Feb.", "Maa.", "Apr.", "Mei", "Jun.", "Jul.", "Aug.", "Sep.", "Okt.", "Nov.", "Des."}
- // monthNamesChinese list the month names in the Chinese.
- monthNamesChinese = []string{"一", "二", "三", "四", "五", "六", "七", "八", "九", "十", "十一", "十二"}
- // monthNamesChineseAbbr1 list the month number and character abbreviation in Chinese
- monthNamesChineseAbbrPlus = []string{"0月", "1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月"}
- // monthNamesChinesePlus list the month names in Chinese plus the character 月
- monthNamesChinesePlus = []string{"一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"}
- // monthNamesKoreanAbbrPlus lists out the month number plus 월 for the Korean language
- monthNamesKoreanAbbrPlus = []string{"0월", "1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월"}
- // monthNamesTradMongolian lists the month number for use with traditional Mongolian
- monthNamesTradMongolian = []string{"M01", "M02", "M03", "M04", "M05", "M06", "M07", "M08", "M09", "M10", "M11", "M12"}
- // monthNamesFrench list the month names in the French.
- monthNamesFrench = []string{"janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre"}
- // monthNamesFrenchAbbr lists the month name abbreviations in French
- monthNamesFrenchAbbr = []string{"janv.", "févr.", "mars", "avri.", "mai", "juin", "juil.", "août", "sept.", "octo.", "nove.", "déce."}
- // monthNamesGerman list the month names in the German.
- monthNamesGerman = []string{"Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"}
- // monthNamesGermanAbbr list the month abbreviations in German
- monthNamesGermanAbbr = []string{"Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"}
- // monthNamesAustria list the month names in the Austria.
- monthNamesAustria = []string{"Jänner", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"}
- // monthNamesAustriaAbbr list the month name abbreviations in Austrian
- monthNamesAustriaAbbr = []string{"Jän", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"}
- // monthNamesIrish list the month names in the Irish.
- monthNamesIrish = []string{"Eanáir", "Feabhra", "Márta", "Aibreán", "Bealtaine", "Meitheamh", "Iúil", "Lúnasa", "Meán Fómhair", "Deireadh Fómhair", "Samhain", "Nollaig"}
- // monthNamesIrishAbbr lists the month abbreviations in Irish
- monthNamesIrishAbbr = []string{"Ean", "Feabh", "Márta", "Aib", "Beal", "Meith", "Iúil", "Lún", "MFómh", "DFómh", "Samh", "Noll"}
- // monthNamesItalian list the month names in the Italian.
- monthNamesItalian = []string{"gennaio", "febbraio", "marzo", "aprile", "maggio", "giugno", "luglio", "agosto", "settembre", "ottobre", "novembre", "dicembre"}
- // monthNamesItalianAbbr list the month name abbreviations in Italian
- monthNamesItalianAbbr = []string{"gen", "feb", "mar", "apr", "mag", "giu", "lug", "ago", "set", "ott", "nov", "dic"}
- // monthNamesRussian list the month names in the Russian.
- monthNamesRussian = []string{"январь", "февраль", "март", "апрель", "май", "июнь", "июль", "август", "сентябрь", "октябрь", "ноябрь", "декабрь"}
- // monthNamesRussianAbbr list the month abbreviations for Russian.
- monthNamesRussianAbbr = []string{"янв.", "фев.", "март", "апр.", "май", "июнь", "июль", "авг.", "сен.", "окт.", "ноя.", "дек."}
- // monthNamesSpanish list the month names in the Spanish.
- monthNamesSpanish = []string{"enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre"}
- // monthNamesSpanishAbbr list the month abbreviations in Spanish
- monthNamesSpanishAbbr = []string{"ene", "feb", "mar", "abr", "may", "jun", "jul", "ago", "sep", "oct", "nov", "dic"}
- // monthNamesThai list the month names in the Thai.
- monthNamesThai = []string{
- "\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21",
- "\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c",
- "\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21",
- "\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19",
- "\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21",
- "\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19",
- "\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21",
- "\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21",
- "\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19",
- "\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21",
- "\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19",
- "\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21",
- }
- // monthNamesTibetan list the month names in the Tibetan.
- monthNamesTibetan = []string{
- "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c\u0f0b",
- "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b",
- "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0b",
- "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54\u0f0b",
- "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f63\u0f94\u0f0b\u0f54\u0f0b",
- "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54\u0f0b",
- "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54\u0f0b",
- "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54\u0f0b",
- "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54\u0f0b",
- "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54\u0f0d",
- "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f0b",
- "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b",
- }
- // monthNamesTibetanAbbr lists the month name abbreviations in Tibetan
- monthNamesTibetanAbbr = []string{
- "\u0f5f\u0fb3\u0f0b\u0f21",
- "\u0f5f\u0fb3\u0f0b\u0f22",
- "\u0f5f\u0fb3\u0f0b\u0f23",
- "\u0f5f\u0fb3\u0f0b\u0f24",
- "\u0f5f\u0fb3\u0f0b\u0f25",
- "\u0f5f\u0fb3\u0f0b\u0f26",
- "\u0f5f\u0fb3\u0f0b\u0f27",
- "\u0f5f\u0fb3\u0f0b\u0f28",
- "\u0f5f\u0fb3\u0f0b\u0f29",
- "\u0f5f\u0fb3\u0f0b\u0f21\u0f20",
- "\u0f5f\u0fb3\u0f0b\u0f21\u0f21",
- "\u0f5f\u0fb3\u0f0b\u0f21\u0f22",
- }
- // monthNamesTurkish list the month names in the Turkish.
- monthNamesTurkish = []string{"Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"}
- // monthNamesTurkishAbbr lists the month name abbreviations in Turkish, this prevents string concatenation
- monthNamesTurkishAbbr = []string{"Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"}
- // monthNamesVietnamese list the month name used for Vietnamese
- monthNamesVietnamese = []string{"Tháng 1", "Tháng 2", "Tháng 3", "Tháng 4", "Tháng 5", "Tháng 6", "Tháng 7", "Tháng 8", "Tháng 9", "Tháng 10", "Tháng 11", "Tháng 12"}
- // monthNamesVietnameseAbbr3 list the mid-form abbreviation for Vietnamese months
- monthNamesVietnameseAbbr3 = []string{"Thg 1", "Thg 2", "Thg 3", "Thg 4", "Thg 5", "Thg 6", "Thg 7", "Thg 8", "Thg 9", "Thg 10", "Thg 11", "Thg 12"}
- // monthNamesVietnameseAbbr5 list the short-form abbreviation for Vietnamese months
- monthNamesVietnameseAbbr5 = []string{"T 1", "T 2", "T 3", "T 4", "T 5", "T 6", "T 7", "T 8", "T 9", "T 10", "T 11", "T 12"}
- // monthNamesWelsh list the month names in the Welsh.
- monthNamesWelsh = []string{"Ionawr", "Chwefror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorffennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"}
- // monthNamesWelshAbbr lists the month name abbreviations in Welsh, this prevents string concatenation
- monthNamesWelshAbbr = []string{"Ion", "Chwef", "Maw", "Ebr", "Mai", "Meh", "Gorff", "Awst", "Medi", "Hyd", "Tach", "Rhag"}
- // monthNamesWolof list the month names in the Wolof.
- monthNamesWolof = []string{"Samwiye", "Fewriye", "Maars", "Awril", "Me", "Suwe", "Sullet", "Ut", "Septàmbar", "Oktoobar", "Noowàmbar", "Desàmbar"}
- // monthNamesWolofAbbr list the month name abbreviations in Wolof, this prevents string concatenation
- monthNamesWolofAbbr = []string{"Sam.", "Few.", "Maa", "Awr.", "Me", "Suw", "Sul.", "Ut", "Sept.", "Okt.", "Now.", "Des."}
- // monthNamesXhosa list the month names in the Xhosa.
- monthNamesXhosa = []string{"uJanuwari", "uFebuwari", "uMatshi", "uAprili", "uMeyi", "uJuni", "uJulayi", "uAgasti", "uSeptemba", "uOktobha", "uNovemba", "uDisemba"}
- // monthNamesXhosaAbbr list the month abbreviations in the Xhosa, this prevents string concatenation
- monthNamesXhosaAbbr = []string{"uJan.", "uFeb.", "uMat.", "uEpr.", "uMey.", "uJun.", "uJul.", "uAg.", "uSep.", "uOkt.", "uNov.", "uDis."}
- // monthNamesYi list the month names in the Yi.
- monthNamesYi = []string{"\ua2cd", "\ua44d", "\ua315", "\ua1d6", "\ua26c", "\ua0d8", "\ua3c3", "\ua246", "\ua22c", "\ua2b0", "\ua2b0\ua2aa", "\ua2b0\ua44b"}
- // monthNamesYiSuffix lists the month names in Yi with the "\ua1aa" suffix
- monthNamesYiSuffix = []string{"\ua2cd\ua1aa", "\ua44d\ua1aa", "\ua315\ua1aa", "\ua1d6\ua1aa", "\ua26c\ua1aa", "\ua0d8\ua1aa", "\ua3c3\ua1aa", "\ua246\ua1aa", "\ua22c\ua1aa", "\ua2b0\ua1aa", "\ua2b0\ua2aa\ua1aa", "\ua2b0\ua44b\ua1aa"}
- // monthNamesZulu list the month names in the Zulu.
- monthNamesZulu = []string{"Januwari", "Febhuwari", "Mashi", "Ephreli", "Meyi", "Juni", "Julayi", "Agasti", "Septemba", "Okthoba", "Novemba", "Disemba"}
- // monthNamesZuluAbbr list the month name abbreviations in Zulu
- monthNamesZuluAbbr = []string{"Jan", "Feb", "Mas", "Eph", "Mey", "Jun", "Jul", "Agas", "Sep", "Okt", "Nov", "Dis"}
- // apFmtAfrikaans defined the AM/PM name in the Afrikaans.
- apFmtAfrikaans = "vm./nm."
- // apFmtCuba defined the AM/PM name in the Cuba.
- apFmtCuba = "a.m./p.m."
- // apFmtIrish defined the AM/PM name in the Irish.
- apFmtIrish = "r.n./i.n."
- // apFmtJapanese defined the AM/PM name in the Japanese.
- apFmtJapanese = "午前/午後"
- // apFmtKorean defined the AM/PM name in the Korean.
- apFmtKorean = "오전/오후"
- // apFmtSpanish defined the AM/PM name in the Spanish.
- apFmtSpanish = "a. m./p. m."
- // apFmtTibetan defined the AM/PM name in the Tibetan.
- apFmtTibetan = "\u0f66\u0f94\u0f0b\u0f51\u0fb2\u0f7c\u0f0b/\u0f55\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f7c\u0f0b"
- // apFmtTurkish defined the AM/PM name in the Turkish.
- apFmtTurkish = "\u00F6\u00F6/\u00F6\u0053"
- // apFmtVietnamese defined the AM/PM name in the Vietnamese.
- apFmtVietnamese = "SA/CH"
- // apFmtWolof defined the AM/PM name in the Wolof.
- apFmtWolof = "Sub/Ngo"
- // apFmtYi defined the AM/PM name in the Yi.
- apFmtYi = "\ua3b8\ua111/\ua06f\ua2d2"
- // apFmtWelsh defined the AM/PM name in the Welsh.
- apFmtWelsh = "yb/yh"
- )
- // prepareNumberic split the number into two before and after parts by a
- // decimal point.
- func (nf *numberFormat) prepareNumberic(value string) {
- if nf.isNumeric, _, _ = isNumeric(value); !nf.isNumeric {
- return
- }
- }
- // format provides a function to return a string parse by number format
- // expression. If the given number format is not supported, this will return
- // the original cell value.
- func format(value, numFmt string, date1904 bool) string {
- p := nfp.NumberFormatParser()
- nf := numberFormat{section: p.Parse(numFmt), value: value, date1904: date1904}
- nf.number, nf.valueSectionType = nf.getValueSectionType(value)
- nf.prepareNumberic(value)
- for i, section := range nf.section {
- nf.sectionIdx = i
- if section.Type != nf.valueSectionType {
- continue
- }
- if nf.isNumeric {
- switch section.Type {
- case nfp.TokenSectionPositive:
- return nf.positiveHandler()
- case nfp.TokenSectionNegative:
- return nf.negativeHandler()
- default:
- return nf.zeroHandler()
- }
- }
- return nf.textHandler()
- }
- return value
- }
- // positiveHandler will be handling positive selection for a number format
- // expression.
- func (nf *numberFormat) positiveHandler() (result string) {
- nf.t, nf.hours, nf.seconds = timeFromExcelTime(nf.number, nf.date1904), false, false
- for i, token := range nf.section[nf.sectionIdx].Items {
- if inStrSlice(supportedTokenTypes, token.TType, true) == -1 || token.TType == nfp.TokenTypeGeneral {
- result = nf.value
- return
- }
- if token.TType == nfp.TokenTypeCurrencyLanguage {
- if err := nf.currencyLanguageHandler(i, token); err != nil {
- result = nf.value
- return
- }
- }
- if token.TType == nfp.TokenTypeDateTimes {
- nf.dateTimesHandler(i, token)
- }
- if token.TType == nfp.TokenTypeElapsedDateTimes {
- nf.elapsedDateTimesHandler(token)
- }
- if token.TType == nfp.TokenTypeLiteral {
- nf.result += token.TValue
- continue
- }
- if token.TType == nfp.TokenTypeZeroPlaceHolder && token.TValue == strings.Repeat("0", len(token.TValue)) {
- if isNum, precision, decimal := isNumeric(nf.value); isNum {
- if nf.number < 1 {
- nf.result += "0"
- continue
- }
- if precision > 15 {
- nf.result += strconv.FormatFloat(decimal, 'f', -1, 64)
- } else {
- nf.result += fmt.Sprintf("%.f", nf.number)
- }
- continue
- }
- }
- }
- result = nf.result
- return
- }
- // currencyLanguageHandler will be handling currency and language types tokens for a number
- // format expression.
- func (nf *numberFormat) currencyLanguageHandler(i int, token nfp.Token) (err error) {
- for _, part := range token.Parts {
- if inStrSlice(supportedTokenTypes, part.Token.TType, true) == -1 {
- err = ErrUnsupportedNumberFormat
- return
- }
- if _, ok := supportedLanguageInfo[strings.ToUpper(part.Token.TValue)]; !ok {
- err = ErrUnsupportedNumberFormat
- return
- }
- nf.localCode = strings.ToUpper(part.Token.TValue)
- }
- return
- }
- // localAmPm return AM/PM name by supported language ID.
- func (nf *numberFormat) localAmPm(ap string) string {
- if languageInfo, ok := supportedLanguageInfo[nf.localCode]; ok {
- return languageInfo.apFmt
- }
- return ap
- }
- // localMonthsNameEnglish returns the English name of the month.
- func localMonthsNameEnglish(t time.Time, abbr int) string {
- if abbr == 3 {
- return t.Month().String()[:3]
- }
- if abbr == 4 {
- return t.Month().String()
- }
- return t.Month().String()[:1]
- }
- // localMonthsNameAfrikaans returns the Afrikaans name of the month.
- func localMonthsNameAfrikaans(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesAfrikaansAbbr[int(t.Month())-1]
- }
- if abbr == 4 {
- return monthNamesAfrikaans[int(t.Month())-1]
- }
- return monthNamesAfrikaansAbbr[int(t.Month())-1][:1]
- }
- // localMonthsNameAustria returns the Austria name of the month.
- func localMonthsNameAustria(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesAustriaAbbr[int(t.Month())-1]
- }
- if abbr == 4 {
- return monthNamesAustria[int(t.Month())-1]
- }
- return monthNamesAustriaAbbr[int(t.Month())-1][:1]
- }
- // localMonthsNameBangla returns the German name of the month.
- func localMonthsNameBangla(t time.Time, abbr int) string {
- if abbr == 3 || abbr == 4 {
- return monthNamesBangla[int(t.Month())-1]
- }
- return string([]rune(monthNamesBangla[int(t.Month())-1])[:1])
- }
- // localMonthsNameFrench returns the French name of the month.
- func localMonthsNameFrench(t time.Time, abbr int) string {
- if abbr == 3 {
- month := monthNamesFrench[int(t.Month())-1]
- if len([]rune(month)) <= 4 {
- return monthNamesFrench[int(t.Month())-1]
- }
- return monthNamesFrenchAbbr[int(t.Month())-1]
- }
- if abbr == 4 {
- return monthNamesFrench[int(t.Month())-1]
- }
- return monthNamesFrenchAbbr[int(t.Month())-1][:1]
- }
- // localMonthsNameIrish returns the Irish name of the month.
- func localMonthsNameIrish(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesIrishAbbr[int(t.Month()-1)]
- }
- if abbr == 4 {
- return monthNamesIrish[int(t.Month())-1]
- }
- return monthNamesIrishAbbr[int(t.Month())-1][:1]
- }
- // localMonthsNameItalian returns the Italian name of the month.
- func localMonthsNameItalian(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesItalianAbbr[int(t.Month())-1]
- }
- if abbr == 4 {
- return monthNamesItalian[int(t.Month())-1]
- }
- return monthNamesItalianAbbr[int(t.Month())-1][:1]
- }
- // localMonthsNameGerman returns the German name of the month.
- func localMonthsNameGerman(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesGermanAbbr[int(t.Month())-1]
- }
- if abbr == 4 {
- return monthNamesGerman[int(t.Month())-1]
- }
- return monthNamesGermanAbbr[int(t.Month())-1][:1]
- }
- // localMonthsNameChinese1 returns the Chinese name of the month.
- func localMonthsNameChinese1(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesChineseAbbrPlus[int(t.Month())]
- }
- if abbr == 4 {
- return monthNamesChinesePlus[int(t.Month())-1]
- }
- return monthNamesChinese[int(t.Month())-1]
- }
- // localMonthsNameChinese2 returns the Chinese name of the month.
- func localMonthsNameChinese2(t time.Time, abbr int) string {
- if abbr == 3 || abbr == 4 {
- return monthNamesChinesePlus[int(t.Month())-1]
- }
- return monthNamesChinese[int(t.Month())-1]
- }
- // localMonthsNameChinese3 returns the Chinese name of the month.
- func localMonthsNameChinese3(t time.Time, abbr int) string {
- if abbr == 3 || abbr == 4 {
- return monthNamesChineseAbbrPlus[int(t.Month())]
- }
- return strconv.Itoa(int(t.Month()))
- }
- // localMonthsNameKorean returns the Korean name of the month.
- func localMonthsNameKorean(t time.Time, abbr int) string {
- if abbr == 3 || abbr == 4 {
- return monthNamesKoreanAbbrPlus[int(t.Month())]
- }
- return strconv.Itoa(int(t.Month()))
- }
- // localMonthsNameTraditionalMongolian returns the Traditional Mongolian name of the month.
- func localMonthsNameTraditionalMongolian(t time.Time, abbr int) string {
- if abbr == 5 {
- return "M"
- }
- return monthNamesTradMongolian[int(t.Month()-1)]
- }
- // localMonthsNameRussian returns the Russian name of the month.
- func localMonthsNameRussian(t time.Time, abbr int) string {
- if abbr == 3 {
- month := monthNamesRussian[int(t.Month())-1]
- if len([]rune(month)) <= 4 {
- return month
- }
- return monthNamesRussianAbbr[int(t.Month())-1]
- }
- if abbr == 4 {
- return monthNamesRussian[int(t.Month())-1]
- }
- return string([]rune(monthNamesRussian[int(t.Month())-1])[:1])
- }
- // localMonthsNameSpanish returns the Spanish name of the month.
- func localMonthsNameSpanish(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesSpanishAbbr[int(t.Month())-1]
- }
- if abbr == 4 {
- return monthNamesSpanish[int(t.Month())-1]
- }
- return monthNamesSpanishAbbr[int(t.Month())-1][:1]
- }
- // localMonthsNameThai returns the Thai name of the month.
- func localMonthsNameThai(t time.Time, abbr int) string {
- if abbr == 3 {
- r := []rune(monthNamesThai[int(t.Month())-1])
- return string(r[:1]) + "." + string(r[len(r)-2:len(r)-1]) + "."
- }
- if abbr == 4 {
- return monthNamesThai[int(t.Month())-1]
- }
- return string([]rune(monthNamesThai[int(t.Month())-1])[:1])
- }
- // localMonthsNameTibetan returns the Tibetan name of the month.
- func localMonthsNameTibetan(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesTibetanAbbr[int(t.Month())-1]
- }
- if abbr == 5 {
- if t.Month() == 10 {
- return "\u0f66"
- }
- return "\u0f5f"
- }
- return monthNamesTibetan[int(t.Month())-1]
- }
- // localMonthsNameTurkish returns the Turkish name of the month.
- func localMonthsNameTurkish(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesTurkishAbbr[int(t.Month())-1]
- }
- if abbr == 4 {
- return monthNamesTurkish[int(t.Month())-1]
- }
- return string([]rune(monthNamesTurkishAbbr[int(t.Month())-1])[:1])
- }
- // localMonthsNameWelsh returns the Welsh name of the month.
- func localMonthsNameWelsh(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesWelshAbbr[int(t.Month())-1]
- }
- if abbr == 4 {
- return monthNamesWelsh[int(t.Month())-1]
- }
- return monthNamesWelshAbbr[int(t.Month())-1][:1]
- }
- // localMonthsNameVietnamese returns the Vietnamese name of the month.
- func localMonthsNameVietnamese(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesVietnameseAbbr3[int(t.Month()-1)]
- }
- if abbr == 5 {
- return monthNamesVietnameseAbbr5[int(t.Month()-1)]
- }
- return monthNamesVietnamese[int(t.Month()-1)]
- }
- // localMonthsNameWolof returns the Wolof name of the month.
- func localMonthsNameWolof(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesWolofAbbr[int(t.Month())-1]
- }
- if abbr == 4 {
- return monthNamesWolof[int(t.Month())-1]
- }
- return monthNamesWolof[int(t.Month())-1][:1]
- }
- // localMonthsNameXhosa returns the Xhosa name of the month.
- func localMonthsNameXhosa(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesXhosaAbbr[int(t.Month())-1]
- }
- if abbr == 4 {
- return monthNamesXhosa[int(t.Month())-1]
- }
- return "u"
- }
- // localMonthsNameYi returns the Yi name of the month.
- func localMonthsNameYi(t time.Time, abbr int) string {
- if abbr == 3 || abbr == 4 {
- return monthNamesYiSuffix[int(t.Month()-1)]
- }
- return string([]rune(monthNamesYi[int(t.Month())-1])[:1])
- }
- // localMonthsNameZulu returns the Zulu name of the month.
- func localMonthsNameZulu(t time.Time, abbr int) string {
- if abbr == 3 {
- return monthNamesZuluAbbr[int(t.Month()-1)]
- }
- if abbr == 4 {
- return monthNamesZulu[int(t.Month())-1]
- }
- return monthNamesZuluAbbr[int(t.Month())-1][:1]
- }
- // localMonthName return months name by supported language ID.
- func (nf *numberFormat) localMonthsName(abbr int) string {
- if languageInfo, ok := supportedLanguageInfo[nf.localCode]; ok {
- return languageInfo.localMonth(nf.t, abbr)
- }
- return localMonthsNameEnglish(nf.t, abbr)
- }
- // dateTimesHandler will be handling date and times types tokens for a number
- // format expression.
- func (nf *numberFormat) dateTimesHandler(i int, token nfp.Token) {
- if idx := inStrSlice(nfp.AmPm, strings.ToUpper(token.TValue), false); idx != -1 {
- if nf.ap == "" {
- nextHours := nf.hoursNext(i)
- aps := strings.Split(nf.localAmPm(token.TValue), "/")
- nf.ap = aps[0]
- if nextHours >= 12 {
- nf.ap = aps[1]
- }
- }
- nf.result += nf.ap
- return
- }
- if strings.Contains(strings.ToUpper(token.TValue), "M") {
- l := len(token.TValue)
- if l == 1 && !nf.hours && !nf.secondsNext(i) {
- nf.result += strconv.Itoa(int(nf.t.Month()))
- return
- }
- if l == 2 && !nf.hours && !nf.secondsNext(i) {
- nf.result += fmt.Sprintf("%02d", int(nf.t.Month()))
- return
- }
- if l == 3 {
- nf.result += nf.localMonthsName(3)
- return
- }
- if l == 4 || l > 5 {
- nf.result += nf.localMonthsName(4)
- return
- }
- if l == 5 {
- nf.result += nf.localMonthsName(5)
- return
- }
- }
- nf.yearsHandler(i, token)
- nf.daysHandler(i, token)
- nf.hoursHandler(i, token)
- nf.minutesHandler(token)
- nf.secondsHandler(token)
- }
- // yearsHandler will be handling years in the date and times types tokens for a
- // number format expression.
- func (nf *numberFormat) yearsHandler(i int, token nfp.Token) {
- years := strings.Contains(strings.ToUpper(token.TValue), "Y")
- if years && len(token.TValue) <= 2 {
- nf.result += strconv.Itoa(nf.t.Year())[2:]
- return
- }
- if years && len(token.TValue) > 2 {
- nf.result += strconv.Itoa(nf.t.Year())
- return
- }
- }
- // daysHandler will be handling days in the date and times types tokens for a
- // number format expression.
- func (nf *numberFormat) daysHandler(i int, token nfp.Token) {
- if strings.Contains(strings.ToUpper(token.TValue), "D") {
- switch len(token.TValue) {
- case 1:
- nf.result += strconv.Itoa(nf.t.Day())
- return
- case 2:
- nf.result += fmt.Sprintf("%02d", nf.t.Day())
- return
- case 3:
- nf.result += nf.t.Weekday().String()[:3]
- return
- default:
- nf.result += nf.t.Weekday().String()
- return
- }
- }
- }
- // hoursHandler will be handling hours in the date and times types tokens for a
- // number format expression.
- func (nf *numberFormat) hoursHandler(i int, token nfp.Token) {
- nf.hours = strings.Contains(strings.ToUpper(token.TValue), "H")
- if nf.hours {
- h := nf.t.Hour()
- ap, ok := nf.apNext(i)
- if ok {
- nf.ap = ap[0]
- if h >= 12 {
- nf.ap = ap[1]
- }
- if h > 12 {
- h -= 12
- }
- }
- if nf.ap != "" && nf.hoursNext(i) == -1 && h > 12 {
- h -= 12
- }
- switch len(token.TValue) {
- case 1:
- nf.result += strconv.Itoa(h)
- return
- default:
- nf.result += fmt.Sprintf("%02d", h)
- return
- }
- }
- }
- // minutesHandler will be handling minutes in the date and times types tokens
- // for a number format expression.
- func (nf *numberFormat) minutesHandler(token nfp.Token) {
- if strings.Contains(strings.ToUpper(token.TValue), "M") {
- nf.hours = false
- switch len(token.TValue) {
- case 1:
- nf.result += strconv.Itoa(nf.t.Minute())
- return
- default:
- nf.result += fmt.Sprintf("%02d", nf.t.Minute())
- return
- }
- }
- }
- // secondsHandler will be handling seconds in the date and times types tokens
- // for a number format expression.
- func (nf *numberFormat) secondsHandler(token nfp.Token) {
- nf.seconds = strings.Contains(strings.ToUpper(token.TValue), "S")
- if nf.seconds {
- switch len(token.TValue) {
- case 1:
- nf.result += strconv.Itoa(nf.t.Second())
- return
- default:
- nf.result += fmt.Sprintf("%02d", nf.t.Second())
- return
- }
- }
- }
- // elapsedDateTimesHandler will be handling elapsed date and times types tokens
- // for a number format expression.
- func (nf *numberFormat) elapsedDateTimesHandler(token nfp.Token) {
- if strings.Contains(strings.ToUpper(token.TValue), "H") {
- nf.result += fmt.Sprintf("%.f", nf.t.Sub(excel1900Epoc).Hours())
- return
- }
- if strings.Contains(strings.ToUpper(token.TValue), "M") {
- nf.result += fmt.Sprintf("%.f", nf.t.Sub(excel1900Epoc).Minutes())
- return
- }
- if strings.Contains(strings.ToUpper(token.TValue), "S") {
- nf.result += fmt.Sprintf("%.f", nf.t.Sub(excel1900Epoc).Seconds())
- return
- }
- }
- // hoursNext detects if a token of type hours exists after a given tokens list.
- func (nf *numberFormat) hoursNext(i int) int {
- tokens := nf.section[nf.sectionIdx].Items
- for idx := i + 1; idx < len(tokens); idx++ {
- if tokens[idx].TType == nfp.TokenTypeDateTimes {
- if strings.Contains(strings.ToUpper(tokens[idx].TValue), "H") {
- t := timeFromExcelTime(nf.number, false)
- return t.Hour()
- }
- }
- }
- return -1
- }
- // apNext detects if a token of type AM/PM exists after a given tokens list.
- func (nf *numberFormat) apNext(i int) ([]string, bool) {
- tokens := nf.section[nf.sectionIdx].Items
- for idx := i + 1; idx < len(tokens); idx++ {
- if tokens[idx].TType == nfp.TokenTypeDateTimes {
- if strings.Contains(strings.ToUpper(tokens[idx].TValue), "H") {
- return nil, false
- }
- if i := inStrSlice(nfp.AmPm, tokens[idx].TValue, false); i != -1 {
- return strings.Split(nf.localAmPm(tokens[idx].TValue), "/"), true
- }
- }
- }
- return nil, false
- }
- // secondsNext detects if a token of type seconds exists after a given tokens
- // list.
- func (nf *numberFormat) secondsNext(i int) bool {
- tokens := nf.section[nf.sectionIdx].Items
- for idx := i + 1; idx < len(tokens); idx++ {
- if tokens[idx].TType == nfp.TokenTypeDateTimes {
- return strings.Contains(strings.ToUpper(tokens[idx].TValue), "S")
- }
- }
- return false
- }
- // negativeHandler will be handling negative selection for a number format
- // expression.
- func (nf *numberFormat) negativeHandler() (result string) {
- for _, token := range nf.section[nf.sectionIdx].Items {
- if inStrSlice(supportedTokenTypes, token.TType, true) == -1 || token.TType == nfp.TokenTypeGeneral {
- result = nf.value
- return
- }
- if token.TType == nfp.TokenTypeLiteral {
- nf.result += token.TValue
- continue
- }
- if token.TType == nfp.TokenTypeZeroPlaceHolder && token.TValue == strings.Repeat("0", len(token.TValue)) {
- if isNum, precision, decimal := isNumeric(nf.value); isNum {
- if math.Abs(nf.number) < 1 {
- nf.result += "0"
- continue
- }
- if precision > 15 {
- nf.result += strings.TrimLeft(strconv.FormatFloat(decimal, 'f', -1, 64), "-")
- } else {
- nf.result += fmt.Sprintf("%.f", math.Abs(nf.number))
- }
- continue
- }
- }
- }
- result = nf.result
- return
- }
- // zeroHandler will be handling zero selection for a number format expression.
- func (nf *numberFormat) zeroHandler() string {
- return nf.value
- }
- // textHandler will be handling text selection for a number format expression.
- func (nf *numberFormat) textHandler() (result string) {
- for _, token := range nf.section[nf.sectionIdx].Items {
- if token.TType == nfp.TokenTypeLiteral {
- result += token.TValue
- }
- if token.TType == nfp.TokenTypeTextPlaceHolder {
- result += nf.value
- }
- }
- return result
- }
- // getValueSectionType returns its applicable number format expression section
- // based on the given value.
- func (nf *numberFormat) getValueSectionType(value string) (float64, string) {
- isNum, _, _ := isNumeric(value)
- if !isNum {
- return 0, nfp.TokenSectionText
- }
- number, _ := strconv.ParseFloat(value, 64)
- if number > 0 {
- return number, nfp.TokenSectionPositive
- }
- if number < 0 {
- return number, nfp.TokenSectionNegative
- }
- return number, nfp.TokenSectionZero
- }
|