标题: [文本处理] 复制到剪贴板的文字,批处理怎么实现倒序输出? [打印本页]
作者: pichuli2019 时间: 2020-3-9 15:33 标题: 复制到剪贴板的文字,批处理怎么实现倒序输出?
复制到剪贴板后的一段文字,批处理实现 倒序输出。谢谢了
作者: ivor 时间: 2020-3-9 17:35
- powershell "$a = [System.Windows.Clipboard]::GetText().ToCharArray();$a[$a.count..0] -join ''"
复制代码
作者: Batcher 时间: 2020-3-9 23:12
回复 1# pichuli2019
test1.bat- powershell "Add-Type -AssemblyName PresentationCore; $a = [Windows.Clipboard]::GetText().ToCharArray();$a[$a.count..0] -join ''"
复制代码
test2.bat- powershell "Add-Type -AssemblyName PresentationCore; $a = [Windows.Clipboard]::GetText().ToCharArray(); [Array]::Reverse($a); -join $a"
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |