カテゴリー:
Powershell
閲覧数:297 配信日:2021-05-28 23:09
最初に結論
Windows10 でクリップボード内容から 指定文字列を削除するためには?
PowerShellを使用する
▼strDelete.ps1 - ショートカット
$iframe = Get-Clipboard -Format Text
$value = $iframe -replace '<iframe src="https://www.google.com/maps/embed\?pb=(.*?)" .*?</iframe>', '$1'
Set-Clipboard $value
リンク先
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -NoProfile -ExecutionPolicy Unrestricted -noexit C:\Users\user\Desktop\test\strDelete.ps1
やりたいこと
クリップボード内容から下記指定文字列をなるべく簡単に削除したい
<iframe src="https://www.google.com/maps/embed?pb=
" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
・Windows10 でクリップボード内容から 指定文字列を簡単に削除する方法はありますか?
試したこと1
PowerShellスクリプトへのショートカットを作成する
作成したショートカットの[プロパティ]ダイアログを開き、「リンク先」の文字列(つまり.ps1ファイルのフルパス名)の先頭に、「powershell 」を追加する
・PowerShellスクリプトへのショートカットを作成する→ 実行するも、期待した結果を得られない