Using SharePoint Designer in Data View Web Part using the people picker with multiple names Display

  1. Ex. 2; #abc;3;#pqr  
  2.   
  3.   
  4.   
  5. Ans: abc;pqr  
  6.   
  7.   
  8.   
  9. <script type="text/javascript">  
  10.   
  11.      function CleanNames(textclean) {  
  12.   
  13.           return text2clean.replace(/[;#0-9]+/g, "; ");  
  14.   
  15.      }  
  16.   
  17. </script>  
  18.   
  19.   
  20.   
  21. Then call it from your XSL  
  22.   
  23.   
  24.   
  25. <xsl:if test="string-length(@Employess) != 0">   
  26.   
  27.      <script type="text/javascript">document.write(CleanNames("<xsl:value-of select="@Employess" />"));</script>   
  28.   
  29. </xsl:if>