Search found 1 match

by rwyarbrough
21 Nov 2016, 22:49
Forum: Episode / Movie Naming Scheme
Topic: How about sharing our format expressions?
Replies: 33
Views: 492903

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_-]&qu...