Hi at all. I’m new to C++ and Juce. Can anyone tell me please how to search after words in a Text-File ? For example :
In my File called “myFile.TXT” are special Tags like “[General]” or “[Randomizers]” and i want to read all the stuff, what`s between this Tags. Excuse for my bad English , I’m from Germany. But I hope you understand, what I mean.
It’ll depend on the exact format of the file, but this should get you started
File f(T("myFile.txt"));
String s = f.loadFileAsString();
String s1 = s.fromFirstOccuranceOf(T("[General]"), false, false).upToFirstOccuranceOf(T("["), false, false);
Thanks for the very fast reply. I try it out.