有人可以帮帮我吗?
tinymce.init({
...
setup: function(ed) {
ed.on('init', function() {
var doc = this.getDoc().getElementById("tinymce");
doc.style.margin = 0;
});
},
});
答案 0 :(得分:1)
正如Mathias在评论中指出的那样,Select-String
在PowerShell v3之前不可用。它可以替换为Where-Object
过滤器:
Get-Content 'C:\path\to\file.txt' | Where-Object { $_ -match 'expression' }