在Word中只删除英文保留中文的方法
在Word的“编辑”菜单选“查找”(或直接按ctrl+F快捷键),选“替换”标签,然后在查找内容后面输入^$,替换后面的内容留空,然后点击“全部替换”按钮即可删除所有英文字母。
此外,也可以在查找和替换面板下面点“高级”按钮,在“特殊字符”按钮弹出列表那里选择“任意字母”,这是就看到查找内容文本框后面自动输入了“^$”字符。
在Word中只删除数字的方法
同上面的方法调出查找替换框,在“查找内容”后面输入^#,“替换为”后面留空,然后按“全部替换”按钮即可清除文档中的所有阿拉伯数字。
在Office Word中只删除中文保留英文的方法
调出查找替换框,在“查找内容”后面的框里输入[!^1-^127]
(注意要输入中括号),同时,点开“高级”按钮,将“使用通配符”前面的复选框勾上,最后点击“全部替换”按钮即可删除文档中的所有中文汉字。
word中批量删除:空格,段首空格,空段,超链接,表格,图形图像
# File src/library/stats/R/AIC.R # Part of the R package, http://www.R-project.org # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # A copy of the GNU General Public License is available at # http://www.r-project.org/Licenses/ #### Return the value of Akaike's Information Criterion AIC <- function(object, ..., k = 2) UseMethod('AIC') ## For back-compatibility AIC.logLik <- function(object, ..., k = 2) -2 * as.numeric(object) + k * attr(objec
subset
{base} |
R Documentation |
Subsetting Vectors, Matrices and Data Frames
Description
Return subsets of vectors, matrices or data frames which meet
conditions.
Usage
subset(x, ...) ## Default S3 method: subset(x, subset, ...) ## S3 method for class 'matrix' subset(x, subset, select, drop = FALSE, ...) ## S3 method for class 'data.frame' subset(x, subset, select, drop = FALSE, ...)
Argume
# File src/library/stats/R/wilcox.test.R # Part of the R package, http://www.R-project.org # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # A copy of the GNU General Public License is available at # http://www.r-project.org/Licenses/ wilcox.test <- function(x, ...) UseMethod('wilcox.test') wilcox.test.default <- function(x, y = NULL, alternative = c('two.sided', 'less', 'greater'), mu = 0, paired = FALSE, exact = NULL, correct = TRUE,