Search found 1 match
- 21 Nov 2016, 22:49
- Forum: Episode / Movie Naming Scheme
- Topic: How about sharing our format expressions?
- Replies: 36
- Views: 583503
Re: How about sharing our format expressions?
Nothing fancy, simple but it works. I replace the ampersand with the word and, the number sign with the word number, and an regex to remove all special characters except the underscore and dash .replaceAll(/&/,"and").replaceAll(/#/,"number").replaceAll("[^a-zA-Z0-9_-]", "") if you like umlauts and ...