Expand my Community achievements bar.

Convert hyphen to underscore

Avatar

Former Community Member

Does anyone know the javascript to convert a hyphen to an underscore on the exit event? The data exported cannot contain hyphens. Example 77-1520 should be 77_1520 or MC1-130 would be MC1_130.  Thanks

2 Replies

Avatar

Level 8

this.rawValue=this.rawValue.replace(/-/g,"_");

Kyle