Forum Discussion
RobbSalzmann
2 years agoValued Contributor II
The following will give you the three letter Time Zone designation:
Dim regex As New Regex("\b\w") Dim tz As String = String.Concat(regex.Matches(TimeZoneInfo.Local.StandardName).Cast(Of Match)().Select(Function(m) m.Value))
Related Content
- 9 months ago
- 4 months ago
- 9 months ago