Hello. I have a class in my project (Person) that contains attributes (for example, name, age, gender, etc) and I have an array of these objects (Person). I also have a text file and inside it is typed several characteristics in a format Name # Age # Sex, for example Ana # 20 # Female in a row, Paulo # 31 # Male in the next. I would like to know if there is a possibility when the program will read this txt file, identify that there is a String before the # character and thus write it to a variable. So I could create an object with the characteristics of the given file (like this: Person p = new Person ("Ana", "20", "Female"). my array.