0
下午好,我一直在試圖從txt/csv文件中導入一個字段,並且它在導入時不斷導致錯誤。我知道爲什麼我似乎無法弄清楚如何解決它。 我有一個列在下面列出的字符串,它在運行時會導致錯誤。問題是事故描述被正確引用,但也包含另一組雙引號。我有什麼方法可以從引用的字符串中刪除引號嗎?FileHelpers導入問題
"123456","I heard a "pop" in my shoulder","01/01/1900"
這是FileHelpers類
Namespace xxx
<DelimitedRecord(","), IgnoreFirst(1)>
Public Class yyy
<FieldQuoted()> _
Public IDAs String
<FieldQuoted()> _
Public AccidentDescr As String
<FieldQuoted()> <FieldConverter(ConverterKind.Date, "yyyy-MM-dd")> _
Public DOI As DateTime
任何幫助將是巨大的
剝離出來我的代碼對不起 –
你是如何讀取文件?......這是今天上午在這裏... – Plutonix
昏暗的引擎=新FileHelperEngine(的GetType(xxx.yyy)) 昏暗的數據作爲xxx.yyy()= DirectCast(engine.ReadFile(Me.txtFileName.Text),xxx.yyy()) –