Hi All,
I have a text file that is arranged as follows:
username1, password1
username2, password2
username3, password3
What i want my code to do for each line of this text file, is put usernamex into a variable and passwordx into a variable, so that they can be written to a different file.
basicaly, i need to convert a line like:
username1, password1
into a line like:
<uname=username1>
<pword=password1>
I have a text file that is arranged as follows:
username1, password1
username2, password2
username3, password3
What i want my code to do for each line of this text file, is put usernamex into a variable and passwordx into a variable, so that they can be written to a different file.
basicaly, i need to convert a line like:
username1, password1
into a line like:
<uname=username1>
<pword=password1>