I would like to tokenize the following string. "I went home with Mark's brother, to play a video game." result should be like this.
I
went
home
with
Mark
'
s
brother
to
,
play
a
video
game
.
Can you please tell me how to do it using regex.
I would like to tokenize the following string. "I went home with Mark's brother, to play a video game." result should be like this.
I
went
home
with
Mark
'
s
brother
to
,
play
a
video
game
.
Can you please tell me how to do it using regex.