Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get the first 10 words in a string in R?

Tags:

r

csv

I have a string in R as

x <- "The length of the word is going to be of nice use to me"

I want the first 10 words of the above specified string.

Also for example I have a CSV file where the format looks like this :-

Keyword,City(Column Header)
The length of the string should not be more than 10,New York
The Keyword should be of specific length,Los Angeles
This is an experimental basis program string,Seattle
Please help me with getting only the first ten words,Boston

I want to get only the first 10 words from the column 'Keyword' for each row and write it onto a CSV file. Please help me in this regards.

like image 1000
user3188390 Avatar asked Jan 12 '14 22:01

user3188390


2 Answers

Regular expression (regex) answer using \w (word character) and its negation \W:

gsub("^((\\w+\\W+){9}\\w+).*$","\\1",x)
  1. ^ Beginning of the token (zero-width)
  2. ((\\w+\\W+){9}\\w+) Ten words separated by not-words.
    1. (\\w+\\W+){9} A word followed by not-a-word, 9 times
      1. \\w+ One or more word characters (i.e. a word)
      2. \\W+ One or more non-word characters (i.e. a space)
      3. {9} Nine repetitions
    2. \\w+ The tenth word
  3. .* Anything else, including other following words
  4. $ End of the token (zero-width)
  5. \\1 when this token found, replace it with the first captured group (the 10 words)
like image 176
Blue Magister Avatar answered Sep 29 '22 06:09

Blue Magister


How about using the word function from Hadley Wickham's stringr package?

word(string = x, start = 1, end = 10, sep = fixed(" "))

like image 28
Jubbles Avatar answered Sep 29 '22 08:09

Jubbles