Please visit http://regexstorm.net/Tester before reading the blog. REPLACE ER function REPLACE FUNCTION The REPLACE function returns the specified text string as a String value after all or part of it has been replaced with another string. Syntax REPLACE ( text , pattern, replacement, regular expression flag) Arguments text : String The valid path of a data source of the String type. pattern : String If the regular expression flag argument is TRUE , this function returns the specified string after it has been changed by applying the regular expression that is specified by the pattern argument. The regular expression is used to find the characters that must be replaced. Example : REPLACE ("+1 923 456 4971", "[^0-9]", "", true) applies a regular expression that removes all non-numeric symbols, and it returns "19234564971" . If the regular expression flag argument is FALSE , t...
how to bind enumeration to the model say for example ( inventtransorigin.reference category )
ReplyDelete