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 Link to comment https://forums.phpfreaks.com/topic/163650-regex-help-5600-lines-file-need-to-find-a-comman-newline/ 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*} Link to comment https://forums.phpfreaks.com/topic/163650-regex-help-5600-lines-file-need-to-find-a-comman-newline/#findComment-863574 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/ Link to comment https://forums.phpfreaks.com/topic/163650-regex-help-5600-lines-file-need-to-find-a-comman-newline/#findComment-865794 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.