How to input variable inside regex javascript?

How do you add a '@' to a regex in JavaScript?

  • How to add at(@) sign in javascript regex? This is my current regex: /^[a-zA-Z0-9._-]$/

  • Answer:

    Just put it in there. No escaping required for the @ character.

Cameron Hurd at Quora Visit the source

Was this solution helpful to you?

Other answers

I finally found a solution: /^[a-zA-Z0-9@._-]$/ - this is ok /^[a-zA-Z0-9._-@]$/ - this produces an error (Invalid regular expression: /^[a-zA-Z0-9._-@]$/: Range out of order in character class)

Dragoljub Bogicevic

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.