2

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

4

2 回答 2

8

另一种方式

Split(string1, Chr(34))
于 2013-04-26T23:07:28.167 回答
6

你逃"错了。

尝试这个:split(string1, """")


一些文档:MSDN 上的字符串数据类型 (Visual Basic)

我知道那是 VB,而不是 VBA,但语言基础(几乎?)是相同的。

于 2013-04-26T23:05:35.083 回答