I build app that will present a lot of icons so I need list of all Font-Awesome class name like
[\"fa-dropbox\",\"fa-rocket\",\"fa-globe\", ....]
so on is ther
For future updates, copy paste the complete list from the cheatsheet (http://fortawesome.github.io/Font-Awesome/cheatsheet/) into an editor (notepad++ in my case). And do the following regular expression find & replace actions :
remove the special character at the begin and the characters between block quotes []
find: ^.*(fa-[^\s]*).*
replace: \1
and if you want to wrap everything in an array:
find: ^.*(fa-[^\s]*).*
replace: "\1",
you only need to start the string with "[" and end it with "]" to make the array complete