Example code of repeating
spaces within a string:
$xrepeat = ' ' * 11
$string_with_spaces = “ Hello World of Spaces!!!”
Write-output $xrepeat
$string_with_spaces
Output image:
To indent or tab a string:
$Tab = [char]9
Write-Output "$Tab Hello Tab Indention!!!"
Output image:
To add other HTML character in PowerShell string:
$Euro_symbol = [char]8364
Write-Output "$Euro_symbol Hello
Euro Symbol in PowerShell!!!"
Output image:
================================
Free Android Apps:
Click links below to find out more:
Excel Keyboard guide:
Heaven's Dew Fall Prayer app for Android :
Catholic Rosary Guide for Android:
Pray the Rosary every day, countless blessings will be showered upon your life if you recite the Rosary faithfully.
https://play.google.com/store/apps/details?id=com.myrosaryapp
https://play.google.com/store/apps/details?id=com.myrosaryapp
Comments
Post a Comment