作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何构造正则表达式来解析 C++ 枚举?
我试过的枚举看起来像
enum Temperature
{
C = 0,
F=1, // some elements are commented
R, // most elements are not gived a value
K // sometimes the last element is succeeded by a comma
} temperature;
// different indent style is used
enum Depth {
m = 0,
ft = 1,
} depth;
最佳答案
这很有挑战性 :) 下面是我能想到的最好的。假设给定 只是 { 和 } 之间的文本 它捕获所有名称和相应的值:
/(\w+)\s*(?:=\s*(\d+)|)\s*,?\s*(?:(?:\n|$)|\/\/.*?(?:\n|$)|)/
关于正则表达式解析 C++ 枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7160304/
我是一名优秀的程序员,十分优秀!