I'm aware that this is something people can easily program, but I'm not familiar with those things, so I was hoping there was an easier solution.
I've edited a large database of questions, including sorting, and ended up getting all the question ID's mixed up.
I'm trying to do this in Notepad++, but any other suggestions are welcome. I'm wondering if there's a way to search for a string (ex. "Question[any number]") and replace the numbers with first 1, then 2, et.c.
For clarification, this is how one question looks like:
TriviaBot_Questions[3]['Question'][63] = "Acronyms: What does WTT stand for?";
TriviaBot_Questions[3]['Answers'][63] = {"Want To Trade"};
TriviaBot_Questions[3]['Category'][63] = 7;
TriviaBot_Questions[3]['Points'][63] = 1;
TriviaBot_Questions[3]['Hints'][63] = {};
and the next question, as is now, is not followed by 64. It might be 245 or 1029, and regardless of which number it is, I want it replaced with "previous number + 1", basically.