Newbie Here ! How can I get a word count in a url? I am trying to count the number of occurrence of a word "organizations" in a url.
YourBasicSearch
| eval url_word = split(("URL_field_Here"),"/")
| search url_word = organizations
| stats count
Replace the URL_firld_Here
with your URL field name.
Hope this helps, Thanks!
If this is helpful, accept the answer, please.