hiho
Is there any way to tell rails that my string may not be 'something'?
I am searching for something like
validates :string, :not => 'something'
thanks klump
|
hiho Is there any way to tell rails that my string may not be 'something'? I am searching for something like
thanks klump |
||||
|
|
|
Either of these will do the job (click on the methods for documentation):
|
|||||
|
|
A couple of ways. If you have exact list of what it can't be:
If you want to ensure that it doesn't exist as a substring at all:
If it is more complicated and you want to hide the messy details:
|
||||
|
|