Skip to main content
February 3, 2025
Question

Validation

  • February 3, 2025
  • 8 replies
  • 0 views

Hi Team,

Validation should be triggered if the user enters two consecutive dots in the text field. How can we handle this?

    8 replies

    stefanhelzle0001
    February 3, 2025

    if(
      find("..", "123..456"),
      "ERROR",
      "OK"
    )

    February 3, 2025

    Thanks it works

    February 4, 2025

    The validation should throw an error when the user enters something like "3.6.5" as an example. how can we achive this?

    amaans4178
    February 4, 2025

    what does 'something like this' means, is it refferring to only dots or dot between numbers ?