Interviewer - Server Admin > Customizing UNICOM Intelligence Interviewer - Server Admin > Activity configuration files > Web configuration files > Settings for Manage User Properties
 
Settings for Manage User Properties
Manage User Properties is the activity name of the User Properties menu point in User Administration. Its Web.config file is stored in:
c:\InetPub\wwwroot\SPSSMR\Shared\ManageUserProperties
The SPSS_ValidMdmRegEx key contains a regular expression that determines whether a property group name is valid. By default, property group names must start with a letter, which is then followed by any number of other letters, numbers, or underscore characters. This is specified in the file as:
<appSettings>
  <add key="SPSS_ValidMdmRegEx" value="^[\p{L}][\p{L}\p{N}\p{Pc}]*$"/>
</appSettings>
To allow names that contain other characters, change the value of this key. For information on how to write regular expressions of this type, see:
http://www.regular-expressions.info/unicode.html
See also
Web configuration files