我想计算以下链接中的单词数。 https://storymirror.com/read/story/gujarati/ywsh5l6o/baagbaan-ek-phuulno-nirnnya
在Microsoft Word中,它的计数正确,但是,在下面的代码中,我无法获取正确的数据。
length(REGEXP_REPLACE(replace(original_content,'"',''),'\\''+', '''', 'g')).
我尝试了多种选择,例如
1. REGEXP_REPLACE(replace(content,'"',''),'\\''+', '''', 'g')
2. array_length(regexp_split_to_array(trim(content), E'\\W+'), 1),