如何拆分/分组文本文件?
我想拆分/分组此文本:
[Help]
Group0
[Help Op]
Group1
[Help Mod]
Group2
[Help Member]
Group3
[Help Default]
Group4
我该怎么做? 因此,像
string op 等于 Group1,或者标签 [Help OP] 下的任何文本
与其他“标签”相同,例如 string default 将等于“group4”,
或者即使有更好的方法来布局它,例如 xml 或无论如何。
I want to split/group this text:
[Help]
Group0
[Help Op]
Group1
[Help Mod]
Group2
[Help Member]
Group3
[Help Default]
Group4
How may I do so?
So Like
string op would equal Group1, or whatever text is underneath the tag [Help OP]
same with the other 'tags' like string default would equal 'group4'
or even if there is a better way to lay this out such as xml or whatever else.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您使用 xml 文件,则可以利用 LINQ-TO-XML 来处理解析操作。如果您使用 ini 文件或自定义版本之类的文件,则必须编写自己的解析代码。虽然不是很困难,但仍然需要额外的工作。如果您不介意使用尖括号税,请查看 LINQ-TO-XML。 这里是一个可以帮助您入门的教程。
注意:我假设您正在使用 .Net 3.5 或更高版本。如果情况并非如此,那么使用 XML 的工作量就更大了。
更新:
如果您更倾向于 ini 方法,您的文件将如下所示:
[帮助]
操作 = 组 1
Mod=组2
成员=组3
默认=Group4
[其他一些部分]
someKey=someValue
等。
我编写了一个简单的库,可以解析 ini 文件,读取键和值,写入键和值并保存 ini 文件更改(通过覆盖或通过保存到新文件)。代码太大,无法在这里发布,但我总是可以将其扔到某个地方并放置一个链接。
要查找一个值,将类似于以下内容:
If you go with an xml file, you can take advantage of LINQ-TO-XML to handle the parsing operations. If you go with something like an ini file or a custom version like you have, you'll have to write your own parsing code. Not terribly tough, but extra work none the less. Take a look at LINQ-TO-XML if you don't mind working with the angle bracket tax. Here is a tutorial that may get you started.
NOTE: I'm assuming you're working with .Net 3.5 or higher. If that is not the case, working with XML is a bit more work.
UPDATE:
If you're leaning more towards an ini approach, your files will look like this:
[Help]
Op=Group1
Mod=Group2
Member=Group3
Default=Group4
[Some Other section]
someKey=someValue
etc.
I've got a simple library that I wrote that can parse through the ini file, reading keys and values, writing keys and values and saving ini file changes (either to the same location by overwriting or by saving to a new file). The code is too big to post in here, but I could always toss it up somewhere and put a link to it.
To look up a value it would be something like the following:
kernel32.dll 中定义了 2 个 Windows 外部函数来读取/写入 .ini 文件。
您需要将它们导入到您的代码中,然后使用它们:
在 VB6 中我曾经这样做:
在 C# 中您这样做:
There are 2 Windows external functions defined in kernel32.dll to read/write .ini files.
You need to import them into your code and then use them:
In VB6 I used to do this:
In C# you do it like this:
您似乎想读取包含以提供的格式存在的密钥和数据的
ini
文件。所以,如果你想从文本文件
读取数据,你可以这样做It seems that you want to read the
ini
file with key and data existing in the provided format. So, if you want to read the data fromtext file
, you can do