Unterminated string constant
Closed
mmushfiq
Ambucias
- Posts
- 1
- Registration date
- Friday August 29, 2014
- Status
- Member
- Last seen
- August 29, 2014
Ambucias
- Posts
- 47366
- Registration date
- Monday February 1, 2010
- Status
- Moderator
- Last seen
- September 1, 2021
Related:
- Unterminated string constant
- Unexpected t string - Guide
- Constantly need to reset wireless network adapter ✓ - Forum - Network
- Vba find string in column - Guide
- Vim find string - Guide
- Excel match partial string ✓ - Forum - Excel
1 reply
xpcman
Aug 29, 2014 at 05:06 PM
- Posts
- 19532
- Registration date
- Wednesday October 8, 2008
- Status
- Contributor
- Last seen
- June 15, 2019
Aug 29, 2014 at 05:06 PM
A string constant is missing a closing quotation mark. String constants must be enclosed within a pair of quotation marks.
You can use matching pairs of single or double quotation marks. Double quotation marks can be contained within strings surrounded by single quotation marks, and single quotation marks can be contained within strings surrounded by double quotation marks.
To correct this error
Add the closing quotation mark to the end of the string.
You can use matching pairs of single or double quotation marks. Double quotation marks can be contained within strings surrounded by single quotation marks, and single quotation marks can be contained within strings surrounded by double quotation marks.
To correct this error
Add the closing quotation mark to the end of the string.
Aug 29, 2014 at 05:17 PM