I am trying to convert longitude and latitude in format a b' c" to degrees. To solve this problem I tried to use split(string1, "\\"") but does not help.
How do I split a string using " as a delimiter.
Thanks
另一种方式
Split(string1, Chr(34))
你逃"错了。
尝试这个:split(string1, """")
一些文档:MSDN 上的字符串数据类型 (Visual Basic)
我知道那是 VB,而不是 VBA,但语言基础(几乎?)是相同的。