I am trying to compare string values that I have obtained from my google spreadsheet.
My Months appear in this format \" Jun13\", \"Aug13\" etc. and my script has tr
Is there any reason you can't use the '==' operator?
if ( "April" == ListOfMonths[j][0] ) { Logger.log("Match!"); }