Hello! I have a long JSON file dedicated for translations purpose, like the following :
{
"greeting": "Hello World !",
"whats_your_name": "What's your name ?"
"submissionForm":{
"title": "Subscription",
"username": "Username"
// ...
},
// ...
}
My objective is to count the words inside the string values, not the string keys!
Note: one character like '!' or '?' is considered a word
