Regular expression in bizform

Sonia Samimi asked on August 12, 2015 09:20

How to use Regular expression to put a format for a text box field in a bizform to just accept these three characters ",-()" and numbers.

Correct Answer

Martin Danko answered on August 12, 2015 15:32

Hi Sonia,

another useful page that doesn't require Silverlight and you can see real-time results is: regex101.com

Best regards, Martin

0 votesVote for this answer Unmark Correct answer

Recent Answers


Petr Svihlik answered on August 12, 2015 13:30

  1. Go to Form->Fields
  2. Select the field you want to validate
  3. Scroll down to "Validation" section
  4. Switch "Validation rules" to "Regular expression"
  5. Enter the regex [,-()]* (or [,-()0-9]* if you want to accept also numbers)

I recommend Regex Hero for testing expressions.

2 votesVote for this answer Mark as a Correct answer

Sonia Samimi answered on August 15, 2015 09:34 (last edited on August 15, 2015 09:59)

Thank you guys. I will notify you of results. Best Sonia

0 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.