Loading...
The IsValidBSN() function checks whether the input parameter has a valid BSN format (Dutch social security number).
IsValidBSN()
This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.
Note: BSN is used in the Netherlands as identification number.
Returns true if text is indeed a valid BSN.
true
text
Returns false if text is not a valid BSN.
false
IsValidBSN(
)
IsValidBSN("123456782") 👍Result: True
IsValidBSN("123456782")
IsValidBSN("123456789") 👎Result: False
IsValidBSN("123456789")
☑️
BSN number to be validated.