在文本分析中,我们可能想从单个字符串或字符串向量中提取字符。可能需要使用此提取来创建一个新的字符串,其中包含一些需要进一步分析的特定单词。我们可以借助stringr包的str_sub函数来做到这一点。
请看以下字符串-
> x1<-"Removing harmful things from the road is an act of charity"
加载纵梁包-
> library(stringr) > str_sub(x1,1,8) [1] "Removing" > str_sub(x1,1,23) [1] "Removing harmful things" > str_sub(x1,29,37) [1] " the road" > str_sub(x1,30,37) [1] "the road" > str_sub(x1,-58,-51) [1] "Removing" > str_sub(x1,-58,-1) [1] "Removing harmful things from the road is an act of charity" > str_sub(x1,-7,-1) [1] "charity" > str_sub(x1,-14,-1) [1] "act of charity" > str_sub(x1,-17,-1) [1] "an act of charity"
让我们看一下字符串向量的字符数提取-
> x1<-c("Removing", "harmful", "things", "from", "the", "road", "is", "an", "act", "of", "charity") > str_sub(x1,1,2) [1] "Re" "ha" "th" "fr" "th" "ro" "is" "an" "ac" "of" "ch" > str_sub(x1,1,3) [1] "Rem" "har" "thi" "fro" "the" "roa" "is" "an" "act" "of" "cha" > str_sub(x1,1,10) [1] "Removing" "harmful" "things" "from" "the" "road" [7] "is" "an" "act" "of" "charity" > str_sub(x1,-7,-2) [1] "emovin" "harmfu" "thing" "fro" "th" "roa" "i" "a" [9] "ac" "o" "charit" > str_sub(x1,-7,-1) [1] "emoving" "harmful" "things" "from" "the" "road" "is" [8] "an" "act" "of" "charity" > str_sub(x1,-10,-1) [1] "Removing" "harmful" "things" "from" "the" "road" [7] "is" "an" "act" "of" "charity"
问题内容: 我有一个超过20,000行的文本文件,我需要从中提取特定行。该程序的输出完全是空白文件。 txt文件中有20,000行,该ISDN行不断重复很多时间,每个时间都有不同的值。我的文本文件包含以下数据。 问题答案: 我们假设您使用Java 7,因为这是2014年。 这是一种返回a的方法,其中每个元素都是一个ISDN:
问题 你需要通过指定的文本模式去检查字符串的开头或者结尾,比如文件名后缀,URL Scheme等等。 解决方案 检查字符串开头或结尾的一个简单方法是使用 str.startswith() 或者是 str.endswith() 方法。比如: >>> filename = 'spam.txt' >>> filename.endswith('.txt') True >>> filename.starts
我得到以下字符串: 我想从里面拿走食物和饮料。 我尝试了以下代码: 但它给人的感觉是,食物很刺激,喝了很多,离食物很近,三个和四个。
问题内容: 我正在解决一个简单的问题: 在Java中删除字符数组中的某些字符,想法很简单: 我想输入一个信号,表示当我们想要使用例如生成一个字符串时,不必考虑数组的其余部分 Java中是否有这样的字符?(我想是,但我不确定) 例如,当我们调用: 这将被打印: 虽然我想得到,但我不想使用新的数组来做到这一点 问题答案: Java不会像C那样“标记”字符串的结尾。它跟踪长度和值,因此字符串中可以包含零
问题内容: 我有一个包含一些文本后跟空白行的字符串。保留文本内容并从末尾删除空白换行符的最佳方法是什么? 问题答案: 使用方法从字符串的开头和结尾去除空格(空格,换行等)。
我有以下字符串 从上面,我需要提取下面的文字 第一个数字和文本之间总是有一个空格,所以2129和This is page1之间有一个空格。有时第一个数字被省略,就像2129不见了。文本和下一个数字之间总是有一个空格,所以在This is a Page1和6754001之间有一个空格,有时可能有两个空格。我只需要提取这些线这些线总是从空格开始,所以它可以 它们的后面总是有一个空格,有时是一个空格,有