Hey man thanks for your help. You just opened a whole new world for me and assisted with the first part of a final project.
@BeginningProgrammer2 жыл бұрын
glad I was able to help.
@meganh20362 жыл бұрын
Just rocked my daughter's assignment with your help here, thank you!
@kushalreddy98306 ай бұрын
I dont usually comment, but this video is exactly what I need for one of my assignments, I was so lost with the implementation of vectors and you helped me on the dot.
@communityfinancialempowerm85292 жыл бұрын
Great video, exactly what I needed plus some!
@djalalmaster10182 жыл бұрын
Very amazing explanation sir, you have saved my carrier and guessom project, i'm watching this before 1h of the deadline and i really appreciate your work, ليصونصيال ماندوش زيرو
@DevLogCentral Жыл бұрын
Super helpful video. Really helped me understand this! Thank you!!
@BeginningProgrammer Жыл бұрын
Glad it helped.
@drgbllgt2 жыл бұрын
You are literally the only person that explains code and is not indian on youtube
@cezlock82092 жыл бұрын
thanks, directed me in the right direction to work on an assignment
@CleópatraSantos-s3f7 ай бұрын
Thank you , great video!
@Shmevin Жыл бұрын
very helpful thank you
@missflecha60842 жыл бұрын
amazing! thank you!
@BeginningProgrammer2 жыл бұрын
you're welcome. appreciate the feedback.
@RealStalin7 ай бұрын
Thanks!
@joaoalvesss2 жыл бұрын
Very helpful video!
@sunwookim30046 ай бұрын
thank you!
@and_then_I_whispered2 жыл бұрын
Dude, you're telling me that getline function takes an extra (until)argument😂? I did my University project few days ago. I sorted every line using different characters for diff info and fetched everything separately. I'm feeling like an idiot right now🤓.
@BeginningProgrammer2 жыл бұрын
count it as win... you learned something new. This journey is like that.
@and_then_I_whispered2 жыл бұрын
@@BeginningProgrammer Thanks a lot man:)
@agnarrenolen13366 күн бұрын
What if your strings in the CSV-file is quoted, and the strings contains commas and even escaped quotes?
@ashley095362 жыл бұрын
ty sm 😭❤❤
@NMPVevoOfficial2 жыл бұрын
Thank you very much for the video.! What about if we want to do some calculations with the data that are inside the file?
@BeginningProgrammer2 жыл бұрын
you can stored the data in a data structure and do whatever you would normally do with it. You can look through it, query it, etc.
@RuntimeCodeException2 жыл бұрын
Great video mate
@Якстатинепонимаюкак2 жыл бұрын
i have problem .pls help, when i want to pars int and double valus in console i get 0....
@BeginningProgrammer2 жыл бұрын
did you check out the gist look at the age and gpa gist.github.com/fernandozamoraj/aa35555a56884242041495cbb654dbe8
@danielachim6761 Жыл бұрын
how i do it for multiple csv files like 10-20 ? and like put it in one place all ?
@phuclhuu2 жыл бұрын
thank you and i from in vietnam
@santiagobenitezperez33652 жыл бұрын
Amazing!
@rhettarded2 жыл бұрын
How can I ignore the first line of the file? Say, in a csv file, the first line is usually the titles (Name, Age, Birthday) and wanted to skip it and have it read to the 2nd line, that contains the values?
@BeginningProgrammer2 жыл бұрын
read the line but don't store it in memory. Just do a getline before the loop begins
@rhettarded2 жыл бұрын
@Code Morsels thank you. Is there a way to put the getline inside the while in another loop? Because my file is a csv that has date in a string, and a bunch of float in another columns. I have a stock data: date (string), (then all floats) open, high, low, adjust close, volume, percent change. Wondering if there is a shortcut instead of using atof each time
@BeginningProgrammer2 жыл бұрын
@@rhettarded Have you seen this other video kzbin.info/www/bejne/jau2nZ5pjLyVhq8. It has reusable way to parsing the file and you can just reuse the same code over and over. You can extract whatever columns you want out of it. For the dates you may need to add another function called getDate. And the code is at gist.github.com/fernandozamoraj/22faf8e4b2ee45cb8e0f7dc5110319e7
@drgbllgt2 жыл бұрын
Could you make a video on how to do this with sscanf ?
@BeginningProgrammer2 жыл бұрын
possibly
@yss26852 жыл бұрын
How can we search a student record and bring out everything about that particular structure from the vector container?
@BeginningProgrammer2 жыл бұрын
the most straight forward way is to simply iterate over the vector sequentially and find the item by comparing the attribute. Or you can use the vector's find_first_of www.cplusplus.com/reference/algorithm/find_first_of/. Vector's are not very good for searching. A better option may be a map, if you are mapping by the id.
@yss26852 жыл бұрын
@@BeginningProgrammer Thank you.
@josediaz8862 Жыл бұрын
How would you access the values inside of the vector
@BeginningProgrammer Жыл бұрын
like a normal array v[i]
@jrippee052 жыл бұрын
Sir, where is the data set for the example?
@BeginningProgrammer2 жыл бұрын
you are the first person to ask for it. I didn't realize it was not there. I will post it when I get a chance.
@NM-cg9xj2 жыл бұрын
S-O man, u'r a monster
@noshkren2 жыл бұрын
When I was using the code, it only reads in the first line of the .csv file. Would you know why this would be happening?
@drgbllgt2 жыл бұрын
Maybe you haven't put the "getline" function inside of a loop, like ' while (getline(...)) {...} '
@noshkren2 жыл бұрын
@@drgbllgt I had a corrupt .csv file. I actually looked at the code for a while when in reality, it was just the file.
@marcusp.75129 ай бұрын
In the era of chatgpt your video is the only thing giving me clarity for my final school project, you the GOAT thank you
@campustech2617 Жыл бұрын
How parse dcm file
@BeginningProgrammer Жыл бұрын
So.. data files fall into three broad categories flat files, mark up files, markdown which in a way it's actually a mark up. The other category is binary format. Binary formats can be open standard like PDF. I'm not very familiar with the DCM standard and have not ever seen the inside of one. But with most complex files you normally need an API. The API can provide the data contained in the file. Or sometimes you can create your own API based on the standard. Non flat files are way more complex than flat files though and beyond the scope of this tutorial.
@marc-andrebrun8942 Жыл бұрын
i think C++ is not meant for this kind of job: in pure C, using strtok() or fscanf() it's more concise & cristal clear; this C++ code here is messy as hell;
@BeginningProgrammer Жыл бұрын
Hi Marc. You may be right. However, there are times when other individuals such as students need to use C++ and strtok is not an option on the table.
@marc-andrebrun8942 Жыл бұрын
@@BeginningProgrammer poor student if they must learn that way of programming! as an old tinkerer, i'm focused on pure C or on scheme (racket); this 2 languages are on opposite edge of programming paradigms and i feel it's worth to use both; it's a mutual improvement.
@da.ni.el.niculescu2 жыл бұрын
If I wouldn't know what a csv file is I wouldn't be here, would I? Stop wasting people's time!