rpaterick Posted September 7, 2011 Share Posted September 7, 2011 (edited) 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," "); Edited September 7, 2011 by rpaterick GOT IT TO WORK Quote Link to comment Share on other sites More sharing options...
Dan Korn Posted September 7, 2011 Share Posted September 7, 2011 I would think you could simply do this: return Field("Full Name").replace(/\./g, " "); Or: return ReplaceSubstring(Field("Full Name"), ".", " "); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.