-1
A
回答
0
嘗試使用Google VB更換。 net + streamreader和vb.net + streamwriter的例子,那應該會給你想要的。
+0
我知道如何閱讀一個文件..但我不知道如何在引號之後如果找到單詞名稱。 –
1
您必須逐行讀取文件,逐字分割並找到雙引號文本,將其替換爲文本框文本。
我給出了讀取和替換的代碼。在最後寫一個寫函數把它寫回到一個txt文件。
用法:
Try
' Create an instance of StreamReader to read from a file.
Dim sr As StreamReader = New StreamReader("TestFile.txt")
Dim line As String
Dim FullContent as string=""
' Read and display the lines from the file until the end
' of the file is reached.
Dim strArray() as string=Nothing
Do
Array.Clear(strArray,0,strArray.Length)
line = sr.ReadLine()
strArray=line.split(" ") 'To read Every Word Seperated by a Space
For i=0 to strArray.Count-1
'Checks StartsWith and EndsWith " - Eg. Ashi likes "firefox"
If strArray(i).StartsWith("""") and strArray(i).EndsWith("""") then
'Replace the string in "firefox" with TextBox1 text
line.Replace("""" & strArray(i) & """",trim(TextBox1.Text))
End If
FullContent = FullContent & line 'Append the changes to full content
Next
Loop Until line Is Nothing
sr.Close()
'Now you can write the FullContent Back to Txt File which has the replaced changes
'writeFunction(FullContent)
'If you want to display, then
msgbox(FullContent)
Catch E As Exception
' Let the user know what went wrong.
Console.WriteLine("The file could not be read:")
Console.WriteLine(E.Message)
End Try
+0
我想通了。謝謝! –
相關問題
- 1. 捕獲特定文本並將其替換爲C#
- 2. 如何從文本文件中獲取數字並將其替換爲+1號?
- 3. 找到模板並將其替換並替換爲文件
- 4. Ruby - 從URL獲取圖像並將其轉換爲文本
- 5. 如何搜索文本文件並將其替換爲C#?
- 6. 如何提取數據並將其替換爲新代碼並將其保存爲新文本?
- 7. 查找文本並將其替換爲CMD
- 8. 獲取某些文本替換它並將其包含在跨度中?
- 9. 從文件中讀取文本並將其轉換爲UTF32
- 10. 如何找到列表中的文本並將其替換爲新文本?
- 11. 將文本替換爲Jquery
- 12. 查找元素並將其替換爲
- 13. 獲取內容文件並將其轉換爲int php
- 14. 將文本框的值替換爲vb.net中的DataGridView
- 15. 獲取RichTextBox格式並將其用於替換函數
- 16. Ionic 2 - 讀取.wav文件並將其轉換爲基本64
- 17. 從Blob存儲中讀取PDF並將其轉換爲文本
- 18. vb.net從web.txt文件中讀取文本並將其顯示在文本框中?
- 19. Sweetalert - 獲取div內容並將其顯示爲文本
- 20. 從edittext中獲取文本並將其存儲爲字符串
- 21. 從文本字段獲取值並將其存儲爲數組
- 22. 從文本文件獲取內容並替換關鍵字PHP
- 23. 匹配「THIS」並替換爲「THAT」RegEx Vb.Net
- 24. 如何捕獲href鏈接並將其替換爲PHP
- 25. 裝飾StreamReader並替換讀取文本
- 26. AS3 - 截取並替換輸入文本
- 27. 在Word文檔中查找文本並將其替換爲表格
- 28. VB.Net將文本轉換爲WWW格式
- 29. 從文本框中獲取文本並將其放入javascript中
- 30. 如何獲取工件的最新版本號並將其替換爲目標文件?
只是看它:1。如何從一個文本框2.如何寫的文字在我的愚見文件這是不是真的值得SO問題得到文本發現,這不是一個非常具體的問題,只是谷歌它。 – Aaron
使用[String.Replace](http://msdn.microsoft.com/en-us/library/system.string.replace.aspx)。 – Neolisk
我做過谷歌它。 –