With the help of nltk.tokenize.LineTokenizer()
method, we are able to extract the tokens from string of sentences in the form of single line by using tokenize.LineTokenizer()
method.
Syntax : tokenize.LineTokenizer()
Return : Return the tokens of line from stream of sentences.
Example #1 :
In this example we can see that by using tokenize.LineTokenizer()
method, we are able to extract the tokens from stream of sentences into small lines.
from nltk.tokenize import LineTokenizer
tk = LineTokenizer()
gfg = "GeeksforGeeks...$$&* \nis\n for geeks"
geek = tk.tokenize(gfg)
print (geek)
|
Output :
[‘GeeksforGeeks…$$&* ‘, ‘is’, ‘ for geeks’]
Example #2 :
from nltk.tokenize import LineTokenizer
tk = LineTokenizer(blanklines = 'keep' )
gfg = "The price\n\n of burger \nin BurgerKing is Rs.36.\n"
geek = tk.tokenize(gfg)
print (geek)
|
Output :
[‘The price’, ”, ‘ of burger ‘, ‘in BurgerKing is Rs.36.’]
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
12 Jun, 2019
Like Article
Save Article