Max number of words | XM Community
Skip to main content
Solved

Max number of words

  • August 7, 2023
  • 4 replies
  • 173 views

Forum|alt.badge.img+2

Is there a way to set validation on a text question to a certain number of words? I want a max of 3 words for a question.

Best answer by TomG

It is custom validation (Add Validation - Custom), which is what I interpreted your question to be asking for.

 

4 replies

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 6083 replies
  • August 7, 2023

You can use matches regex ^(?:\b\w+\b[\s\r\n]*){1,3}$


Forum|alt.badge.img+2
  • Author
  • 2 replies
  • August 7, 2023

Is that javascript? If so, I need some hand holding with how to implement that.


TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 6083 replies
  • Answer
  • August 7, 2023

It is custom validation (Add Validation - Custom), which is what I interpreted your question to be asking for.

 


Forum|alt.badge.img+2
  • Author
  • 2 replies
  • August 8, 2023

Ah, thank, you. That worked!