1
A
回答
2
我發現您可以通過使用Open Office來實現此目的。從他們你可以定義你自己的分隔符和周圍的角色。
以CSV格式保存/導出時,請選中定義我自己的字符的方框。
4
您可以從Excel中使用過宏觀appropiate像這樣使用:
Sub QuoteCommaExport()
' Dimension all variables.
Dim DestFile As String
Dim FileNum As Integer
Dim ColumnCount As Integer
Dim RowCount As Integer
' Prompt user for destination file name.
DestFile = InputBox("Enter the destination filename" & Chr(10) & "(with complete path):", "Quote-Comma Exporter")
' Obtain next free file handle number.
FileNum = FreeFile()
' Turn error checking off.
On Error Resume Next
' Attempt to open destination file for output.
Open DestFile For Output As #FileNum
' If an error occurs report it and end.
If Err <> 0 Then
MsgBox "Cannot open filename " & DestFile
End
End If
' Turn error checking on.
On Error GoTo 0
' Loop for each row in selection.
For RowCount = 1 To Selection.Rows.Count
' Loop for each column in selection.
For ColumnCount = 1 To Selection.Columns.Count
' Write current cell's text to file with quotation marks.
Print #FileNum, """" & Selection.Cells(RowCount, ColumnCount).Text & """";
' Check if cell is in last column.
If ColumnCount = Selection.Columns.Count Then
' If so, then write a blank line.
Print #FileNum,
Else
' Otherwise, write a comma.
Print #FileNum, ";";
End If
' Start next iteration of ColumnCount loop.
Next ColumnCount
' Start next iteration of RowCount loop.
Next RowCount
' Close destination file.
Close #FileNum
End Sub
相關問題
- 1. 谷歌文檔:無法導出/ Python中
- 2. 從Access導出CSV文件不帶雙引號
- 3. 如何使用R清除雙引號雙引號的CSV
- 4. 谷歌圖表JSON裝載雙引號
- 5. 谷歌雲文檔誤導
- 6. 使用PowerShell導入和導出CSV以及雙引號中的所有列
- 7. 錯誤在谷歌文檔API文檔導出
- 8. 從谷歌驅動器導出csv API
- 9. 用雙引號括起來的csv文件不剝去引號
- 10. 導出雙值CSV
- 11. 雙引號中使用雙引號
- 12. 谷歌應用程序腳本導出和替換CSV文件
- 13. 如何使用vb.net在csv導出中生成帶雙引號的所有列
- 14. 打開谷歌文檔編號
- 15. 通過SSIS包導入.csv文件不帶雙引號
- 16. 批量導入CSV文件到SQL Server中 - 刪除雙引號
- 17. 使用谷歌引擎的URL來獲取谷歌文檔得到java.net.SocketTimeoutException
- 18. 導出Excel文件或谷歌文檔在Android
- 19. 使用谷歌圖表和csv文件
- 20. 更改文檔的名稱使用谷歌腳本文件導出
- 21. 是否有理由不在CSV文件中使用雙引號?
- 22. 在sql sever 2008中使用雙引號的CSV文件
- 23. 彈出框與鏈接到其他谷歌文檔在谷歌文檔
- 24. 從谷歌文檔
- 25. 從谷歌文檔
- 26. 谷歌文檔textcursor
- 27. CSV忽略逗號雙引號
- 28. 使用雙引號
- 29. StringBuilder導出csv帶有引號
- 30. MySQL導出CSV不帶引號
CSV只需要值被包裹在引號當值包含逗號。爲什麼你需要用引號括起所有的值?你在編寫自己的CSV解析器嗎? – adamleerich
紅寶石似乎不按規則在這裏玩。 – bmargulies