C# 如何读取apache vhosts文件

发布于 2024-10-29 07:37:40 字数 558 浏览 0 评论 0原文

我正在尝试创建一个基本的 C# 应用程序来管理我的 Apache vHosts 文件,因此我不必编辑原始文件来设置新的 vhost

现在我正在尝试使用正则表达式来匹配 Vhosts,但这不起作用,有人会吗?为我提供一个工作示例,

这就是我当前拥有的

StreamReader reader = new StreamReader(filePath);
string content = reader.ReadToEnd();
string regEx = "<VirtualHost .*>.*</VirtualHost>";
foreach (Match match in Regex.Matches(content, regEx, RegexOptions.IgnoreCase))
{
     MessageBox.Show(match.Value);
}

,但如果我使用 string regEx = ".*" 它可以返回打开的虚拟主机标签,但不会返回任何应该返回所有内容的内容

I'm trying to create a basic C# application for managing my Apache vHosts file so i dont have to edit the file raw to setup a new vhost

Now i'm trying to get regex to match the Vhosts but this is not working would some one proivde me a working example

This is what i currently have

StreamReader reader = new StreamReader(filePath);
string content = reader.ReadToEnd();
string regEx = "<VirtualHost .*>.*</VirtualHost>";
foreach (Match match in Regex.Matches(content, regEx, RegexOptions.IgnoreCase))
{
     MessageBox.Show(match.Value);
}

This fails but if i use string regEx = "<VirtualHost .*>.*"
it works to the point it returns the opening vhosts tag but will not return any of the content where it should return every thing

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

裸钻 2024-11-05 07:37:40

尝试将此作为您的正则

"<VirtualHost [^>]*>([^<]*)</VirtualHost>"

表达式编辑:
[^<]* 周围添加了圆括号,因此它将返回标签之间的文本作为匹配项之一。

Try this as your regexp

"<VirtualHost [^>]*>([^<]*)</VirtualHost>"

EDITED:
Added round brackets around the [^<]*, so it would return text between the tags as one of the matches.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文