I have the following if statement that removes the first instances of a number followed by the period. However, I am noticing it is missing to catch some of them (ex. “16.”, “23.”, “24.”, etc.) and not sure why.
Here is the function:
JavaScript
x
11
11
1
function quesCleanUp(ques){
2
//Checks the first instance of "." and removes it and the number
3
if(ques.match(/[0-9]./g)?.length > 1){//(ques.match(/./g)?.length > 1){
4
var quesClean = ques.replace(/^[^.]*./, '').trim();
5
} else{
6
var quesClean = ques.trim();
7
}
8
9
return quesClean;
10
}
11
The following for loop extracts the question from the google form:
JavaScript
1
72
72
1
for (var i = 0; i < items.length; i++) {
2
var item = items[i];
3
switch(item.getType()) {
4
case FormApp.ItemType.MULTIPLE_CHOICE:
5
var question = item.asMultipleChoiceItem();
6
var ques = quesCleanUp(question.getTitle().trim());//replace(/s/g, "");
7
var question_type = "Multiple Choice";
8
var optns = [];
9
var answr;
10
var answers = question.getChoices();
11
answer_val = false;
12
for (var j = 0; j < answers.length; j++) {
13
var clean = answers[j].getValue().trim();
14
optns.push(clean);
15
if(answers[j].isCorrectAnswer()){
16
answr = answers[j].getValue().trim();
17
for(var x = 0; x < optns.length; x++){
18
if(answr == optns[x]){
19
answer_val = true;
20
break;
21
}
22
}
23
}
24
}
25
var multiJSON = makeJSON(ques, question_type, optns, answr);
26
console.log("JSON1: " + JSON.stringify(multiJSON));
27
constructedJSON[i+1] = multiJSON;
28
break;
29
case FormApp.ItemType.CHECKBOX:
30
var question = item.asCheckboxItem();
31
//var ques = question.getTitle().trim();//.replace(/s/g, "");
32
var ques = quesCleanUp(question.getTitle().trim());//replace(/s/g, "");
33
var question_type = "CheckBox";
34
var optns = [];
35
var answr = [];
36
var answers = question.getChoices();
37
38
for (var j = 0; j < answers.length; j++) {
39
var clean = answers[j].getValue().trim();//replace(/s/g, "");
40
optns.push(clean);
41
if(answers[j].isCorrectAnswer()){
42
answr.push(answers[j].getValue().trim());
43
}
44
}
45
var checkJSON = makeJSON(ques, question_type, optns, answr);
46
console.log("JSON2: " + JSON.stringify(checkJSON));
47
constructedJSON[i+1] = checkJSON;
48
break;
49
case FormApp.ItemType.PARAGRAPH_TEXT:
50
var question = item.asParagraphTextItem();
51
//var ques = question.getTitle().trim();//.replace(/s/g, "");
52
var ques = quesCleanUp(question.getTitle().trim());//replace(/s/g, "");
53
var question_type = "free response";
54
var optns = [];
55
var answr;
56
var paraJSON = makeJSON(ques, question_type, optns, answr);
57
console.log("JSON3: " + JSON.stringify(paraJSON));
58
constructedJSON[i+1] = paraJSON;
59
break;
60
case FormApp.ItemType.TEXT:
61
var question = item.asTextItem();
62
//var ques = question.getTitle().trim();
63
var question_type = "free response";
64
var ques = quesCleanUp(question.getTitle().trim());//replace(/s/g, "");
65
var optns = "";
66
var answr = "";
67
var textJSON = makeJSON(ques, question_type, optns, answr);
68
console.log("JSON4: " + JSON.stringify(textJSON));
69
constructedJSON[i+1] = textJSON;
70
break;
71
}
72
The following example is the type of question 16. What is the meaning of life?
And the expected output: What is the meaning of life?
Advertisement
Answer
Try using /[0-9]+./g to catch more than one digit