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
- 7 months ago
- 3 months ago
- 7 months ago