0

我对 RegEx 比较陌生,需要帮助通过两个分隔符拆分一段文本,然后捕获它们之间的内容。例如,我有一个具有“描述”属性的 JSON 对象,它本质上包含以下文本:

This is yet another test product to test for all sorts of styling/formatting issues. 

PLACEHOLDER

PLACEHOLDER

PLACEHOLDER

******

Not so expensive
Works all day
Works throughout the night
No risk
100% Guarantee
------

This would be where ingredients would go for Test Product 4.

我想要做的是捕获六星号分隔符和六破折号分隔符之间的“项目符号”列表。所以在上面的例子中,我希望能够捕获这些行:

Not so expensive
Works all day
Works throughout the night
No risk
100% Guarantee

因此,我需要用两个分隔符分割:

1) ******
2) ------

在搜索了这个论坛和其他论坛之后,我似乎仍然无法获得任何形式的 .split() 方法和 RegEx 来准确地得到我想要的。有人可以在这里帮助我吗?最终目标是能够捕获该文本,然后将其附加到<div>

4

1 回答 1

2

不?真的吗?

string.split(/------|\*\*\*\*\*\*/);
于 2013-04-22T15:25:41.090 回答