2024-10-01 13:37:53 +02:00
|
|
|
|
<#
|
2023-08-25 12:17:02 +02:00
|
|
|
|
.SYNOPSIS
|
|
|
|
|
Writes text in Emojis
|
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This PowerShell script replaces certain words in the given text by Emojis and writes it to the console.
|
|
|
|
|
.PARAMETER text
|
|
|
|
|
Specifies the text
|
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./write-in-emojis.ps1 "I love my folder"
|
|
|
|
|
I💘️my📂
|
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
param([string]$text = "")
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if ($text -eq "") { $text = Read-Host "Enter the text" }
|
|
|
|
|
|
2023-10-31 11:25:11 +01:00
|
|
|
|
$table = Import-CSV "$PSScriptRoot/../data/emojis.csv"
|
2023-08-25 12:17:02 +02:00
|
|
|
|
foreach($row in $table) {
|
|
|
|
|
$text = $text -Replace "\s?$($row.WORD)\s?","$($row.EMOJI)️"
|
|
|
|
|
}
|
|
|
|
|
Write-Output $text
|
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|