I am trying to implement a basic expression rule to determine if a short string is formatted correctly. I have the code below but it returns the error "Keyword Argument unsupported by function contains". I am getting similar errors in other parts of my application so I'd like to figure out what the error means.
Discussion posts and replies are publicly visible
Hi josephh163,
As it is clearly we can make out from reading the error itself that the keywords that you have used inside the contains function is not supported here we need to directly pass the values without passing the keyword arguments and yes as Mike Schmitt has mentioned that it is not easy to tell which function supports keyword argument and which not, this you only get to know while practicing these type of functions.
At least, all functions in the "a!" domain support keyword syntax.