I know it must be obvious but can't find the answer.
What should I do to get the right characteres such as ", ', etc...?
This is the method I am using,
public void read(Context context) {
InputStream inputStream = context.getResources().openRawResource(
R.raw.puzzles);
Scanner scanner = new Scanner(inputStream);
scanner.useDelimiter(PATTERN);
for (int i = 0; i < 70; i++) {
ids[i] = scanner.next();
titles[i] = scanner.next();
questions[i] = scanner.next();
answers[i] = scanner.next();
}
}
Thanks