1
我正在嘗試編寫一個小腳本,提示用戶輸入他們的電子郵件地址。這封電子郵件的價值被傳遞給一個函數,該函數將他們的電子郵件後綴(如.net,.com,.edu)替換爲.org。我有以下代碼,但它不會替換後綴。任何幫助在這個問題將不勝感激。謝謝。Powershell替換電子郵件後綴
cls
$mail = Read-Host "Please enter your email address"
Function Email ($change)
{
$modified=$change.Replace(".{3}[A-Za-z]", ".org")
$modified
}
Email $mail
非常感謝你。這工作!感謝你的幫助。 – user1013264