jontrac Posted April 12, 2016 Share Posted April 12, 2016 Hi guys, I'm just a very beginner in coding. I would like to do the following tasks. I have a text file named "list.txt" which is located in http://demo.com/list.txt The content of the text file is: person_a, 100 person_b, 200 person_c, 300 In my script, I have a variable named: $person = "person_b". Is there anyway I can check if "person_b" exists in the "list.txt" file? And if it exists, how can I get the number next to it (which is 200)? Thanks a lot for your help! Link to comment Share on other sites More sharing options...
AutoBert Posted April 12, 2016 Share Posted April 12, 2016 (edited) Download the file using InetGet;or InetRead use _FileReadToArray (you need all parameters) sort the file using _ArraySort (only needed if you want the next higher number) serch for the person using _ArraySearch the returned index+1 is the person you want. Edited April 12, 2016 by AutoBert jontrac 1 Link to comment Share on other sites More sharing options...
jontrac Posted April 13, 2016 Author Share Posted April 13, 2016 Thanks AutoBert. It helps so much! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now