I'm not an expert with regex:( I'm trying to to strip all characters from the string except for alpanumeric and underscore and dash. Is this the correct syntax?:
preg_replace("/[^a-z0-9_-]+/i", "", $string);
|
|
Yes, but it can be optimised slightly:
|
|||||||
|
|
Yes. :) |
|||
|
|
|
What you have looks like it will work. You may want to add spaces since they're not an alphanumeric character:
|
|||||||||
|
|