JeremyCanada26 Posted August 8, 2010 Share Posted August 8, 2010 I'm filtering user input and am trying to find out which php function that I use to filter the user input? $user_input = trim($_GET['value']); my regex that I'm using is this, ^(?:[a-z]|([-_ ])(?!.*[^a-z\1])){5,45}$ whenever any of the violations of the more than 1 space or more than 1 dash or more than one underscore, I want to just trim those down to 1 and continue using the existing $user_input with the invalid chars removed but I don't know which php function to use for that. Quote Link to comment Share on other sites More sharing options...
Adam Posted August 10, 2010 Share Posted August 10, 2010 preg_replace ? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.