我的项目陷入困境,无法克服这个困难。我需要其他人的帮助来解决这个问题:
我有一个字符串,在该字符串内部有一些标记文本,我想手动将它们取出并将它们放入字符串的数组列表中。最终结果可能有两个数组列表,一个是普通文本,另一个是令牌文本。下面是一个字符串示例,其中包含一些被打开标记“[[”和关闭标记“]]”包围的标记。
第一步,通过将淀粉源与热水混合来制备麦芽汁,称为 [[Textarea]]。热水与压碎的麦芽或麦芽酒在麦芽浆桶中混合。糖化过程大约需要 [[CheckBox]],在此期间淀粉转化为糖,然后甜麦芽汁从谷物中排出。谷物现在在称为 [[Radio]] 的过程中进行清洗。这种洗涤允许酿酒商尽可能地从谷物中收集 [[DropDownList]] 可发酵液体。
操作字符串后得到两个数组列表:
结果:
Normal Text ArrayList { "The first step, where the wort is prepared by mixing the starch source with hot water, is known as ", ". Hot water is mixed with crushed malt or malts in a mash tun. The mashing process takes around ", ", during which the starches are converted to sugars, and then the sweet wort is drained off the grains. The grains are now washed in a process known as ", ". This washing allows the brewer to gather ", " the fermentable liquid from the grains as possible." }
Token Text ArrayList { "[[Textarea]]", "[[CheckBox]]", "[[Radio]]", "[[DropDownList]]" }
两个数组列表,一个是普通文本数组列表,有 5 个元素,是标记之前或之后的文本,另一个是标记文本数组列表,有 4 个元素,是字符串内部的标记文本。
这个作品可以用哪一种技术切分串,但是对于长长的文本来说太难了,而且很容易出错,有时不能得到我想要的。如果在这个问题上有一些帮助,请在 C# 中发布,因为我正在使用 C# 来执行此任务。