nadeemshafi9 Posted June 25, 2009 Share Posted June 25, 2009 hi guys i have a file its 5600 lines long and basicaly its pure javascript and basicaly javascript objects are defined like this { blah, blah, bah } in firefox this works { blah, blah, bah, } in ie that will crash it because ie expects a string or int after that last comma. so i need to find this in a 5600 line long file, prob is there may be multiple new lines before the } i am using notepad ++ and its search using regex im not sure what version it implenents but i would like some help with teh regex please this is what i got so far ,$*} i assume $ is a newline i think thanks guys Quote Link to comment Share on other sites More sharing options...
phant0m Posted June 25, 2009 Share Posted June 25, 2009 $ signifies the end of the string(or line, if the "m" modifier is set) No idea how the notepad++ regex syntax works, but try this: ,\s*} Quote Link to comment Share on other sites More sharing options...
nadeemshafi9 Posted June 29, 2009 Author Share Posted June 29, 2009 $ signifies the end of the string(or line, if the "m" modifier is set) No idea how the notepad++ regex syntax works, but try this: ,\s*} didnt work but i found this site that validates javascript code and that helped http://www.jslint.com/ Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.