4
I have a. txt file with the following lines:
000-000 = CRT
001-000 = 00000021
009-000 = 00
012-000 = 247823
013-000 = 0000559877
022-000 = 24082017
023-000 = 152842
032-000 = 80F1
100-000 = JORGE EXPEDITO
307-000 = S17SNSNNNSPSS9MSNN00
308-000 = CLIENTE TESTE - APENAS MEDICAMENTOS. DEVE SER APRESENTADA RECEITA
MEDICA EM MESMO NOME DO CARTAO. PODE HAVER COBRANCA DE VALOR A VISTA.
370-000 = CONSULT CLIENTE-CARTAO
999-999 =
I need to take the value of parameter 001-000 = ... that is inside the file. Any idea how to do this in C# I thought of something with LINQ but I don’t know how to implement, some idea?
on the line
308-000
has line break or is just a line ?– Rovann Linhalis
is just one line!
– Sidnei Sanches
What have you done so far? Share the code.
– Thiago Lunardi
You can do a file read and check if the line contains what you’re looking for... either way you’ll need to upload the file contents to C#
– Damon Dudek
yes the point is that I have to check the value after the equal sign = of parameter 001-000
– Sidnei Sanches