About 50 results
Open links in new tab
  1. single line for statement: %%i 'unexpected at this time'

    Oct 23, 2018 · Same problem here; bat script: ... produces "f was unexpected at this time." I'm an old Unix csh script/regex guy, so this new syntax is tripping me up.

  2. Uncaught SyntaxError: Unexpected string in my JavaScript

    Feb 11, 2016 · That means when we reach 3, the start of a new string using double quotes, it's an unexpected string. You probably want: ... At 1, we start the string. 2 is just a " within the string, it …

  3. What should I do with "Unexpected indent" in Python?

    What should I do with "Unexpected indent" in Python? [duplicate] Asked 16 years, 10 months ago Modified 2 years, 9 months ago Viewed 1.4m times

  4. How to fix SyntaxError: Unexpected token '<', "<!DOCTYPE "... is not ...

    Feb 3, 2023 · This is why you're getting the "Unexpected token '<'" error, because the HTML is not valid JSON. To fix this issue, you need to check what the server is sending back and make sure it's …

  5. node.js - SyntaxError: Unexpected identifier - Stack Overflow

    Feb 11, 2015 · SyntaxError: Unexpected identifier Asked 11 years, 2 months ago Modified 1 year, 8 months ago Viewed 118k times

  6. Python unexpected EOF while parsing - Stack Overflow

    Feb 22, 2011 · Python unexpected EOF while parsing [duplicate] Asked 15 years, 1 month ago Modified 1 year, 5 months ago Viewed 501k times

  7. Error "Uncaught SyntaxError: Unexpected token with JSON.parse"

    One other gotcha that can result in "SyntaxError: Unexpected token" exception when calling JSON.parse() is using any of the following in the string values: New-line characters.

  8. here-document gives 'unexpected end of file' error

    Sep 6, 2013 · For anyone stumbling here who googled "bash warning: here-document delimited by end-of-file", it may be that you are getting the warning: here-document at line 74 delimited by end-of-file …

  9. Unexpected token '?' in expression or statement - Stack Overflow

    Jun 20, 2024 · Unexpected token '?' in expression or statement Ask Question Asked 1 year, 10 months ago Modified 1 year, 10 months ago

  10. java - unexpected type error - Stack Overflow

    reversed is a variable assigned the value "". Only variables may be on the left side of an assignment (such as =). += is a special type of assignment. a += b; is basically the same as a = a + b;. Values …