IT.COM

discuss How to extract keywords from text

NameSilo
Watch

damance

Top Member
Impact
2,274
Is it possible to extract keywords from text in bulk?

for example BigLionYellowMonkeyTrulyDeliveryIgniteCBD I need each word separately:

Big
Lion
Yellow
Monkey
Truly
Delivery
Ignite
CBD​
 
1
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
I'd love to know the same thing. Following the thread :)
 
0
•••
pm me i might be able to make you something using vb.net
 
0
•••
2
•••
a few months ago I found a simple webtool to do this but I cant find it now
 
0
•••
3
•••
0
•••
it is not possible if I have "biglionyellowmonkeytrulydeliveryignitecbd"

That wasn't your original question :)

You have to do other things, with dictionaries.
 
1
•••
0
•••
I use MS Word's GetSpellingSuggestions() function to split a name into dictionary words.
 
5
•••
I use MS Word's GetSpellingSuggestions() function to split a name into dictionary words.

amazing stuff! didn't even know there was such a function in Word.

I did a quick search and found the following (which I tested and works really nice):

Sub SpellCheck()
Dim Rng As Range, oSuggestions As Variant
For Each Rng In ActiveDocument.Range.SpellingErrors
With Rng
If .GetSpellingSuggestions.Count > 0 Then
Set oSuggestions = .GetSpellingSuggestions
.Text = "[" & .Text & "][" & oSuggestions(1) & "]"
Else
.Text = "[" & .Text & "][]"
End If
End With
Next
End Sub


found it here:
https://stackoverflow.com/questions...g-suggestions-next-to-spelling-errors-in-word

The above code needs to be pasted in a macro
 
4
•••
i also want to know how can do it
 
0
•••
1
•••
Do you guys know an easy way or an online tool to extract nouns / verbs / adjectives from a list of words?
 
0
•••
0
•••
1
•••
Back