Number of Words in After Effects

PHOTO EMBED

Wed Dec 13 2023 22:58:39 GMT+0000 (Coordinated Universal Time)

Saved by @vjg #javascript

function getNumWords( string ) {

  // Split the string where there is spaces, then count the array length
  return string.split( ' ' ).length
}
content_copyCOPY