PowerShell: String
What is String
String is a sequence of Unicode characters .
There are 3 syntax to write string literals.
'Single Quoted String'
verbatim.
"Double Quoted String"
interpreted, can embed variable and expressions.
Here-String (aka here-doc)
for quoting large text.
PowerShell, string and regular expression
- PowerShell: String
- PowerShell: Single Quoted String
- PowerShell: Double Quoted String
- PowerShell: Here-String
- PowerShell: Escape Characters
- PowerShell: String Length
- PowerShell: Join String
- PowerShell: Split String
- PowerShell: Format String
- PowerShell: String Methods
- PowerShell: String Wildcards
- PowerShell: Regular Expression Operators
- PowerShell: Regex Result ($Matches)
- PowerShell: Regular Expression Syntax