标题: [问题求助] [已解决]用powershell正则在特定行后追加多行 [打印本页]
作者: 小白龙 时间: 2023-5-2 22:04 标题: [已解决]用powershell正则在特定行后追加多行
本帖最后由 小白龙 于 2023-5-3 10:22 编辑
我想在最后一个using开头的行后追加两行文本, 下面的代码没有效果, 求路过大佬指正
原文本:
using System.forms;
using System;
public class cla
{
public string hello()
{
return "hello";
}
}
最后需要的结果
using System.forms;
using System;
using System.IO;
using System.Text;
public class cla
{
public string hello()
{
return "hello";
}
}- $content = @'
- using System.forms;
- using System;
-
- public class cla
- {
- public string hello()
- {
- return "hello";
- }
- }
- '@
- $pattern = '(using\s+.+;)(?=(?:[^{}]*{[^{}]*})*[^{}]*$)'
- $replacement = '$&' + "`r`nusing System.IO;" + "`r`nusing System.Text;"
- $result = [regex]::Replace($content, $pattern, $replacement)
- $filePath = "$HOME\Desktop\a.txt"
- Set-Content -Path $filePath -Value $result
复制代码
作者: jyswjjgdwtdtj 时间: 2023-5-2 22:32
虽然看不懂ps代码 但是如果是我 我会先定位到最后一个using的行数 在把文本分割成一行一行的数组 再拼接 插入(我这肯定不是最好的办法)
作者: tmplinshi 时间: 2023-5-3 08:26
- $content = @'
- using System.forms;
- using System;
-
- public class cla
- {
- public string hello()
- {
- return "hello";
- }
- }
- '@
-
- $append = @'
- using System.IO;
- using System.Text;
- '@
-
- $result = $content -replace '^(.|\r|\n)*\n\s*using\s+\w+.*?\n', ('$0' + $append + "`n")
- $filePath = "$HOME\Desktop\a.txt"
- Set-Content -Path $filePath -Value $result
复制代码
作者: pd1 时间: 2023-5-3 09:08
直接$append+$content呗
没必要非要加在后面吧,$append后面加个换行就行
作者: 小白龙 时间: 2023-5-3 10:23
回复 4# pd1
多谢关注, 主要是想研究一下正则
作者: newswan 时间: 2023-5-3 14:16
本帖最后由 newswan 于 2023-5-3 14:32 编辑
- $content -replace "(?<=using.*`n)(?=`n)","$append`n"
复制代码
你的示例是 字符串, 如果是字符串数组,又不一样了.
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |