Text data type
Overview
The text, or string, datatype represents a sequence of characters. These characters can be text characters, special characters, numeric characters, or other valid input, and must be enclosed in double quotes.
Note:
- The backslash ( \ ) can be used to escape double quotes within a string
Example
Name = "John";
Address = "Zoho Corporation, 4141 Hacienda Drive, Pleasanton, California 94588, USA";
Num = "1234567890";
Address = "Zoho Corporation, 4141 Hacienda Drive, Pleasanton, California 94588, USA";
Num = "1234567890";