How can we join two strings together in PHP?
Tuesday, 08 August 2023
by EITCA Academy
To join two strings together in PHP, you can use the concatenation operator (.) or the concatenation assignment operator (.=). These operators allow you to combine multiple strings into a single string. The concatenation operator (.) is used to concatenate two strings together. It takes two operands, which can be either string literals or variables
How can you concatenate a variable's value with other text in PowerShell?
Saturday, 05 August 2023
by EITCA Academy
To concatenate a variable's value with other text in PowerShell, you can use the concatenation operator (+) or the format operator (-f). These methods allow you to combine strings and variables to create a new string. Using the concatenation operator (+), you can simply add the variable's value and the desired text together. For example,
- Published in Cybersecurity, EITC/IS/WSA Windows Server Administration, Working with PowerShell, Storing user input into variables with PowerShell, Examination review
Tagged under:
Concatenation, Concatenation Operator, Cybersecurity, Format Operator, PowerShell, String Manipulation

