我正在尝试查找时区标识符的最大长度。这是用作时区名称的字符串(例如“America / New_York”)。 tz数据库没有帮助;我找不到实施细节。
Microsoft (.NET Framework 4.5) suggests a max length of 32,但这似乎是他们注册表的限制。
libc points to a limit called "_POSIX_TZNAME_MAX", which is 3 characters long,但这是POSIX合规性的绝对最低要求。通常,我猜一个实现将使用更多。
所以真正的问题是:安全存储时区“tzname”/标识符名称的字符串长度是多少?
答案 0 :(得分:20)
为什么不使用不关心长度的容器 - 例如std::string
?
现在,碰巧我最近使用普通csv格式提供的TZ数据库(例如此处in a file from CERN),但同样的格式也用于Boost源。
根据该数据,我看到最大长度为28:
R> library(RcppBDT) # R package interfacing Boost Date_Time
Loading required package: Rcpp
R> tz <- new(bdtTz, "America/Chicago") # init. an object, using my default TZ
R> tznames <- tz$getAllRegions() # retrieve list of all TZ names
R>
R> length(tznames) # total number of TZ identifiers
[1] 381
R>
R> head(tznames) # look at first six
[1] "Africa/Abidjan" "Africa/Accra" "Africa/Addis_Ababa"
[4] "Africa/Algiers" "Africa/Asmera" "Africa/Bamako"
R>
R> summary(sapply(tznames, nchar)) # numerical summary of length of each
Min. 1st Qu. Median Mean 3rd Qu. Max.
9 13 15 15 17 28
R>
R> tznames[ nchar(tznames) >= 26 ] # looking at length 26 and above
[1] "America/Indiana/Indianapolis" "America/Kentucky/Louisville"
[3] "America/Kentucky/Monticello" "America/North_Dakota/Center"
R>
我们还可以查看直方图:
R> library(MASS)
R> truehist(sapply(tznames, nchar),
+ main="Distribution of TZ identifier length", col="darkgrey")
R>
这使用了我在RcppBDT包SVN repo on R-Forge中但在包的CRAN version中尚未包含的代码。