need help with data managing of content

23cromij

Regular Member
Joined
Sep 7, 2013
Messages
259
Reaction score
46
hi guys,

i hope this is the right place to post this? forgive me if not.


I need some help, when i purchase accounts they come in a format of user/pass/email/pass

but i need to switch this around a little so i can upload it to jarvee.

Can anyone advise of the best way to move some info around as i have many accounts and entering manual is a pain but if i can switch the order of data around il be sble to upload direct to jarvee.


Thanks for any help
 
Last edited:
this can be done using a very simple regex
search for /\//g
replace with :

idk what format jarvee expects, but that will give you
username/mypassword123/[email protected]/mypassw0rdlol!!
username/mypassword123/[email protected]/mypassw0rdlol!!
username/mypassword123/[email protected]/mypassw0rdlol!!
username/mypassword123/[email protected]/mypassw0rdlol!!
to
username:mypassword123:[email protected]:mypassw0rdlol!!
username:mypassword123:[email protected]:mypassw0rdlol!!
username:mypassword123:[email protected]:mypassw0rdlol!!
username:mypassword123:[email protected]:mypassw0rdlol!!

to go from user/pass/email/mypass to user:email:mypass
search for /(.*)\/(.*)\/(.*)\/(.*)/g
replace with $1:$3:$4

grab notepad++ or google for regexr if you don't know how to run a regex
 
this is the demo file that shows the required format:

#name,email/username,password,proxy-url/proxy-ip:port,proxy username,proxy password,tags,date of birth(US format),description,unqiueName(leave empty to auto generate),email validation username,email validation pass,email validation pop3server,email validation port,user agent(leave empty to get default)

my account lists come as:

IGUSERNAME:IGPASS:[email protected]:emailpass:dateacccreated

so how do i make it work lol
 
Hey, sorry man, I didn't mean to just leave you hanging like that

idk if you still need or not, but here's more info in case you or anyone else needs, regex's are a great tool to learn for this type of stuff, i'd suggest looking more into them

I just quickly typed this out so it has minimal string verification but shouldn't be a problem for this, i'd make a backup of your lists before trying just to be safe

Code:
^([\w\S]*):(.*):([\w\S]*\@{1}[\w\S]*):(.*):.*$

that will find beginning of line, create 1 match group of letters/digits/underscores/dashes without a space, a colon that is unmatched, another match group of anything(for password), colon, match of letters/digits/underscores/dashes with 1 @ symbol then letters/digits/underscores/dashes, a colon, and match anything for password again, then an unmatched colon, and date plus end of line

to use it to fix your lists, you would find and replace with this
$1/$2/$3/$4

$1 is the IG Username, $2 is IG Password, $3 is email address, $4 is email pass
just play with it some and you should get the hang of it, if you use find and replace with something like notepad++ make sure you enable regex's, i use regexr website, but i cant post links yet

if you have any questions just ask, i'm going to try to check in here more often
 
Back
Top