我想知道在给定的正则表达式中是否存在命名捕获组,因此我将使用命名捕获来查找该表达式中的所有名称。
请参阅下面的代码段:
public class MySimpleArrayAdapter extends ArrayAdapter<String> {
private final Context context;
private final String[] values;
public MySimpleArrayAdapter(Context context, String[] values) {
super(context, R.layout.rowlayout, values);
this.context = context;
this.values = values;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.rowlayout, parent, false);
TextView textView = (TextView) rowView.findViewById(R.id.label);
textView.setText(values[position]);
String s = values[position];
if (s.equals("Arial")) {
// set textView font to arial
} else if (s.equals("Roboto")){
// set textView font to roboto
}
return rowView;
}
}
我还尝试使用以下两个在线正则表达式测试人员进行验证,他们都工作并找到了“ns”。
为什么我的代码不起作用?我是否误用了boost :: regex?
我使用的C ++ Boost库的版本是1.59
答案 0 :(得分:1)
你不应该逃避<
和>
。试试这个:
"\\(\\?<(?<name>.+)>"