使用 paste0() 重命名列时应使用哪些运算符?

What operators should be used when renaming columns using paste0()?

我在尝试使用 paste0() 重命名列名时遇到 Error: unexpected '}' in "}" 的错误。

例如:

df %>% 
    rename(., paste0("text", "index") = old)

我应该为此使用 = 以外的东西吗?

尝试

df %>% 
  rename(., !!paste0("text", "index") := old)