在.xml文件中搜索图像并提取并创建它们(dummys)

时间:2016-07-28 10:07:52

标签: powershell powershell-v2.0

有人可以帮帮我吗?

tinymce.init({
...
setup: function(ed) { 
  ed.on('init', function() { 
    var doc = this.getDoc().getElementById("tinymce");
    doc.style.margin = 0;
  });
},
});

1 个答案:

答案 0 :(得分:1)

正如Mathias在评论中指出的那样,Select-String在PowerShell v3之前不可用。它可以替换为Where-Object过滤器:

Get-Content 'C:\path\to\file.txt' | Where-Object { $_ -match 'expression' }