
- Swift - Home
- Swift - Overview
- Swift - Environment
- Swift - Basic Syntax
- Swift - Variables
- Swift - Constants
- Swift - Literals
- Swift - Comments
- Swift Operators
- Swift - Operators
- Swift - Arithmetic Operators
- Swift - Comparison Operators
- Swift - Logical Operators
- Swift - Assignment Operators
- Swift - Bitwise Operators
- Swift - Misc Operators
- Swift Advanced Operators
- Swift - Operator Overloading
- Swift - Arithmetic Overflow Operators
- Swift - Identity Operators
- Swift - Range Operators
- Swift Data Types
- Swift - Data Types
- Swift - Integers
- Swift - Floating-Point Numbers
- Swift - Double
- Swift - Boolean
- Swift - Strings
- Swift - Characters
- Swift - Type Aliases
- Swift - Optionals
- Swift - Tuples
- Swift - Assertions and Precondition
- Swift Control Flow
- Swift - Decision Making
- Swift - if statement
- Swift - if...else if...else Statement
- Swift - if-else Statement
- Swift - nested if statements
- Swift - switch statement
- Swift - Loops
- Swift - for in loop
- Swift - While loop
- Swift - repeat...while loop
- Swift - continue statement
- Swift - break statement
- Swift - fall through statement
- Swift Collections
- Swift - Arrays
- Swift - Sets
- Swift - Dictionaries
- Swift Functions
- Swift - Functions
- Swift - Nested Functions
- Swift - Function Overloading
- Swift - Recursion
- Swift - Higher-Order Functions
- Swift Closures
- Swift - Closures
- Swift-Escaping and Non-escaping closure
- Swift - Auto Closures
- Swift OOps
- Swift - Enumerations
- Swift - Structures
- Swift - Classes
- Swift - Properties
- Swift - Methods
- Swift - Subscripts
- Swift - Inheritance
- Swift-Overriding
- Swift - Initialization
- Swift - Deinitialization
- Swift Advanced
- Swift - ARC Overview
- Swift - Optional Chaining
- Swift - Error handling
- Swift - Concurrency
- Swift - Type Casting
- Swift - Nested Types
- Swift - Extensions
- Swift - Protocols
- Swift - Generics
- Swift - Access Control
- Swift - Function vs Method
- Swift - SwiftyJSON
- Swift - Singleton class
- Swift Random Numbers
- Swift Opaque and Boxed Type
Swift String isEmpty Property
String isEmpty Property
The isEmpty property is a pre-defined property of the String structure in Swift. The isEmpty property is used to check whether the given string is empty or not. It will return a boolean value to represent whether the string is empty or not.
For example, we have a string Tutorials Point, now the isEmpty property will return false means the given string is not empty.
Syntax
Following is the syntax of the isEmpty Property −
string.isEmpty
Return Value
This property returns true if the given string is empty. Or return false if the given string is not empty.
Example 1
Swift program to demonstrate the isEmpty property −
import Foundation // Declaring a string var str = "Mohit likes Swift and C++" // Checking whether the string is empty or not // Using isEmpty property print("Is str is empty?:", str.isEmpty)
Output
Is str is empty?: false
Example 2
Swift program to determine whether the given string is empty or not using the isEmpty property −
import Foundation // Declaring a string var str = "" // Checking whether the string is empty or not // Using isEmpty property print("Is str is empty?:", str.isEmpty)
Output
Is str is empty?: true
Example 3
Swift program to check whether the given string is empty or not −
import Foundation // Empty string var str = "" // Using isEmpty property if str.isEmpty{ print("String is empty") }else{ print("String has some values") }
Output
String is empty
swift_strings.htm
Advertisements