rpaterick Posted September 7, 2011 Posted September 7, 2011 GOT IT TO WORK I shortened up the CASE SELECTION that was also part of the code and that worked. Not sure why it wasn't working with the entire CASE SELECTION code plus the stand alone REPLACE feature didn't work together. Var1="Full Name"; CaseSelection="allcaps"; return Field("Full Name").replace(/[\<\>\/.]/g," ");
Dan Korn Posted September 7, 2011 Posted September 7, 2011 I would think you could simply do this: return Field("Full Name").replace(/\./g, " "); Or: return ReplaceSubstring(Field("Full Name"), ".", " ");
Recommended Posts
Archived
This topic is now archived and is closed to further replies.