missing terminating " character

Hi all,

I continue to receive this warning, missing terminating " character

The code section is below.

Any assistance is greatly appreciated.

D

" see="" if="" you="" have="" a="" new="" maxvalue="" if="" (readvalue=""> maxValue[tool]);

The3 fix is below

"

As a newbie thank you however, could you give me a little more, sorry!

You don't need more, just terminate the string constant with the missing ".

Maybe some context (like a compilable/error producing complete sketch) could get more feedback.

Spoonfeeding violates social distancing, sorry.

Acknowledged!

Without context its hard to see.

I assume something went wrong when that snippet was copied,
it looks like a comment that became code.

I can not imagine why somebody would write it in the way it is written,
all the "" will be removed so add only to obfuscation.

I added "; to the strings to make the sketch compile.

char strangeText[] = " see="" if="" you="" have="" a="" new="" maxvalue="" if="" (readvalue=""> maxValue[tool]);";
char sameAs[] = " see="
                " if="
                " you="
                " have="
                " a="
                " new="
                " maxvalue="
                " if="
                " (readvalue="
                "> maxValue[tool]);";

void setup() {
  Serial.begin(250000);
  Serial.println(strangeText);
  Serial.println(sameAs);
}
void loop() {}
 see= if= you= have= a= new= maxvalue= if= (readvalue=> maxValue[tool]);
 see= if= you= have= a= new= maxvalue= if= (readvalue=> maxValue[tool]);