0

我正在使用 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()(")
4

0 回答 0