Mr Lucky Well-known member Sep 27, 2015 #1 Does anyone know a way to do this? Maybe with an expression to match. (I'm trying to deal with human spammers) If so can you please tell me how to do it of if there is an addon. Thanks
Does anyone know a way to do this? Maybe with an expression to match. (I'm trying to deal with human spammers) If so can you please tell me how to do it of if there is an addon. Thanks
Jake Bunce Well-known member Sep 28, 2015 #2 Use this for the regular expression for the custom field: Code: ^((?!http).)*$ That will exclude all values containing 'http'. Upvote 0 Downvote
Use this for the regular expression for the custom field: Code: ^((?!http).)*$ That will exclude all values containing 'http'.
Mr Lucky Well-known member Sep 28, 2015 #3 Thanks Jake, that works well. What would I put if I also want to disallow www, so they can't even have a link without the http? Thanks. Upvote 0 Downvote
Thanks Jake, that works well. What would I put if I also want to disallow www, so they can't even have a link without the http? Thanks.