Jump to content

regex help 5600 lines file need to find a comman newline* }


nadeemshafi9

Recommended Posts

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

$ 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/

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.