我想用VBA代碼分析字符串。 我讀到一個String,它看起來像這樣:用VBA操縱字符串
myStringInput = "FRAG_INST = someValue,DR = otherValue, FRAG = anotherValue"
而且在我的代碼,我想一些變量根據字符串中讀出的值聯繫起來,我想初始化我的變量這樣的:
Dim dr, frag, fraginst As String
fraginst = someValue
dr = otherValue
frag = anotherValue
我已經嘗試過修剪/拆分/ InStr組合,但我總是以錯誤的值結束。 我不能只用「中」功能,因爲該值的長度改變玉米從一個執行到另一個...
更清晰,我需要設計功能,這樣
fraginst = NiceFunction("FRAG_INST",myStringInput)
,它會返回「someValue」
有沒有簡單的方法來做我想要的?
感謝
它的工作對我很好,謝謝 – LostReality
快樂幫:) – Gurman