Course Content
Flowgorithm Features
Flowgorithm Features
0/1
Flowgorithm User Interface
Flowgorithm User Interface
0/3
Flowgorithm Flowchart Shapes
Flowgorithm Flowchart Shapes
0/1
Flowgorithm Data Types
Flowgorithm Data Types
0/1
Flowgorithm Comments
Flowgorithm Comments
0/1
Flowgorithm Numbers
Flowgorithm Numbers
0/1
Flowgorithm Strings
Flowgorithm Strings
0/1
Flowgorithm File Format
Flowgorithm File Format
0/1
Flowgorithm Program Attributes
Flowgorithm Program Attributes
0/1
IPO Chart
IPO Chart ( Input, Process and Output Chart )
0/2
First Flowgorithm Flowchart
First Flowgorithm Flowchart
0/2
Add Two Numbers Flowchart
Add Two Numbers Flowchart
0/2
Flowgorithm Quiz
Flowgorithm Quiz
0/1
Flowgorithm Beginner Exercises
Flowgorithm Beginner Exercises
0/1
Flowgorithm Beginner Course
About Lesson

Strings are sequences of characters, such as letters, numbers, and symbols, that are treated as a single data value.

Strings in the Flowgorithm are enclosed in double quotes (“). For example, “Hello, World” is a string.

Examples

  • “Lionel Messi”
  • “1234”
  • “ChatGPT-4o”
  • “Admin_$”

Create String variable

In this example, let’s create a String variable. The String variable is the name of the company that holds the company name. 

Create String variable Flowgorithm

In the above example, we have created a String variable using the Declare symbol. 

company = “Google, Inc”

Next, we assigned a string to the variable using the Assign symbol. We use the Assign flowchart symbol to store the data in the variable.

& Operator

To combine two or more strings, we use the & operator, which is the Flowgorithm string concatenation operator. Concatenation is the process of combining two or more strings into one string. 

Example

Testing” & “Docs.com” the result would be:

TestingDocs.com