2つの異なる.txtファイル(requested_description.txtとall_description.txt)があります。2つの異なるファイルの文字列の比較vb.net
all_description.txt
ジョンは
マイクは医師
バーバラがモデルである警官です:all_description.txtで私は、このような何かを文字列のリストを持っています
など...
他のファイル(requested_description.txt)で、私は(all_description.txt)
requested_description.txt
ジョン
マイケル
イワン
ドナルド
バーバラ最初のファイルから名前を検索します
など...
私はその後、私は例えば、出力に結果を表示したいrequested_description.txtからの文字列(名前が)all_description.txt
に同じであれば、検索したい:
ジョン>ジョンは警官である
はバーバラ>バーバラは今のモデル
である私はそのように、私はここで少しこだわっているfor each...
を使用昇順にソートする最初、私はsortメソッドを使用すると、コードの唯一のこの種を持っている:
Dim i As Integer = 0
Dim ReadAllDescrpt As String() =File.ReadAllLines("all_description.txt")
Dim RqstDescription As String()= File.ReadAllLines("rqst_description.txt")
Dim allDescrpt As New List(Of String())
allDescrpt.Sort()
For Each descrpt In ReadAllDescrpt
Console.WriteLine(ReadAllDescrpt)
Next
Console.WriteLine()
これは私のためにうまくいきます。今度はこのコードを勉強します! Tnx。 – megatron1986