I know enough to get myself in trouble with programming. I've only taken Java and C++ in school so far, so I don't have too much knowledge other than the OOP ideas and simple programming basics.
So the basic idea that I want to write an app for is this.
I am given a plain text file (this is the only way I can receive the data) with a list of statuses of company materials) For example it may look like:
Now I want to just get a list of all the assets that only have OVERHEATED ENGINE for example. My idea is to just cut and paste my original list into a text area and have the app output in a separate text area of the window the statuses I am looking for. I may be separately looking for different failures, so it's never just the same status I am looking for. I don't need all of the data to be separated, I have specific assets I have to sift out of some extraneous data.
So my question is: What would be the best language to tackle this in? Unfortunately, Perl is already disqualified due to user restrictions on programs. Taking a gander around the internet, C++ and Java may not be the best solutions. I have no aversion to learning something new, so are there other languages I could write this in? I've started to do this through VBA in Excel, but it doesn't seem to be the best fit for what I am looking for.
So the basic idea that I want to write an app for is this.
I am given a plain text file (this is the only way I can receive the data) with a list of statuses of company materials) For example it may look like:
CAR 11 OVERHEATED ENGINE
CAR 127 BAD ALTERNATOR
CAR 235 DEFECTIVE BATTERY
CAR 7 OVERHEATED ENGINE
Now I want to just get a list of all the assets that only have OVERHEATED ENGINE for example. My idea is to just cut and paste my original list into a text area and have the app output in a separate text area of the window the statuses I am looking for. I may be separately looking for different failures, so it's never just the same status I am looking for. I don't need all of the data to be separated, I have specific assets I have to sift out of some extraneous data.
So my question is: What would be the best language to tackle this in? Unfortunately, Perl is already disqualified due to user restrictions on programs. Taking a gander around the internet, C++ and Java may not be the best solutions. I have no aversion to learning something new, so are there other languages I could write this in? I've started to do this through VBA in Excel, but it doesn't seem to be the best fit for what I am looking for.