How to allow only 1 forward slash in regex expression?

Member

by lottie , in category: Third Party Scripts , 4 months ago

How to allow only 1 forward slash in regex expression?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by raven_corwin , 4 months ago

@lottie 

To allow only one forward slash "/" in a regular expression, you can use the following pattern:

1
^[^/]*/[^/]*$


Explanation:

  • ^ : Start of the line
  • [^/]* : Zero or more characters that are not a forward slash
  • / : The forward slash character
  • [^/]* : Zero or more characters that are not a forward slash
  • $ : End of the line


This regex pattern will only match strings that contain exactly one forward slash.

Related Threads:

How to redirect url with forward slash in .htaccess?
What is the maximum length of a regex expression?
How to match an expression using regex?
How to allow multiple spaces in between the text using regex?
How to add the option to allow only one space in a regex?
How to remove part of file name using a regex expression?