Thursday, September 4, 2025
HomeLanguagesPython NLTK | nltk.tokenize.SExprTokenizer()

Python NLTK | nltk.tokenize.SExprTokenizer()

With the help of nltk.tokenize.SExprTokenizer() method, we are able to extract the tokens from string of characters or numbers by using tokenize.SExprTokenizer() method. It actually looking for proper brackets to make tokens.

Syntax : tokenize.SExprTokenizer()
Return : Return the tokens from a string of characters or numbers.

Example #1 :
In this example we can see that by using tokenize.SExprTokenizer() method, we are able to extract the tokens from stream of characters or numbers by taking brackets in consideration.




# import SExprTokenizer() method from nltk
from nltk.tokenize import SExprTokenizer
     
# Create a reference variable for Class SExprTokenizer
tk = SExprTokenizer()
     
# Create a string input
gfg = "( a * ( b + c ))ab( a-c )"
     
# Use tokenize method
geek = tk.tokenize(gfg)
     
print(geek)


Output :

[‘( a * ( b+c ))’, ‘ab’, ‘( a-c )’]

Example #2 :




# import SExprTokenizer() method from nltk
from nltk.tokenize import SExprTokenizer
     
# Create a reference variable for Class SExprTokenizer
tk = SExprTokenizer()
     
# Create a string input
gfg = "(a b) c d (e f)"
     
# Use tokenize method
geek = tk.tokenize(gfg)
     
print(geek)


Output :

[‘(a b)’, ‘c’, ‘d’, ‘(e f)’]

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6632 POSTS0 COMMENTS
Nicole Veronica
11800 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11860 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6698 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS