我正在使用Tkinter在python中创建一个接口,让最终用户可以将某些信息保存到.R文件中的问题结构中。
该程序还允许用户加载包含相同类型结构的.R文件进行编辑。示例结构:
global <- list(
const='
#define max 60
#define min 2.8
double ALPHA[max];
double OMEGA[min];
',
foobar='
double foo(double *condition, double num) {
return foo2(foo3(vars));
}'
)
假设用户想要编辑名为foobar的列表中的项目。如何制作仅移除foobar部件的功能?
换句话说:删除以下示例中第一个和最后一个括号之间的信息。
Foo=("This is(( a() text)(( with unmatching ((parentheses()(")