Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get parameters out of text file

Tags:

c#

I have a C# asp.net page that has to get username/password info from a text file.

Could someone please tell me how.

The text file looks as follows: (it is actually a lot larger, I just got a few lines)

DATASOURCEFILE=D:\folder\folder
var1= etc
var2= more
var3 = misc
var4 = stuff
USERID = user1
PASSWORD = pwd1

all I need is the UserID and password out of that file.

Thank you for your help,

Steve

like image 341
Steve Avatar asked Oct 17 '25 01:10

Steve


1 Answers

This would work:

var dic = File.ReadAllLines("test.txt")
              .Select(l => l.Split(new[] { '=' }))
              .ToDictionary( s => s[0].Trim(), s => s[1].Trim());

dic is a dictionary, so you easily extract your values, i.e.:

string myUser = dic["USERID"];
string myPassword = dic["PASSWORD"];
like image 69
BrokenGlass Avatar answered Oct 19 '25 15:10

BrokenGlass