Last active
January 2, 2016 02:39
-
-
Save shrop/8238747 to your computer and use it in GitHub Desktop.
Replace http://www.fileformat.info/info/unicode/char/ffa0/index.htm character in string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var searchString = 'CLEAR 82LD 124OZ","Allᄄ liquid l'; | |
var repString = searchString.replace(/Allᄄ/, "All(r)"); | |
console.log(repString); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment