我正在IDE Intellij Idea中的Tomcat上运行Web应用程序,并且每次按 Save All 按钮时都需要更新Web应用程序。可能吗?我希望具有IDE Netbeans中的行为。
答案 0 :(得分:1)
首先,在IntelliJ IDEA中,您通常不使用保存按钮,而是为您使用。如果您想进行热交换(在可能的范围内),请在调试模式下运行webapp并点击wordAfterLastComma <- function(x, sep = ","){
x <- sapply(strsplit(x, sep),"[")
trimws(x[[length(x)]])
}
s1 <- "Chengdu Shi, Sichuan Sheng, China"
s2 <- "Chengdu Shi, Sichuan Sheng, China,Chengdu Shi"
wordAfterLastComma(s1)
# [1] "China"
wordAfterLastComma(s2)
# [1] "Chengdu Shi"
+ ctrl
。