0
votes
parsings strings: extracting words and phrases [JavaScript]
A simple regular expression will do but leave the quotation marks. e.g.
'foo bar "lorem ipsum" baz'.match(/("[^"]*")|([^\s"]+)/g)
output: ['foo', 'bar', '"lorem ipsum"', 'baz']
…
2
votes
Processing Javascript RegEx submatches
The easiest solution would be to to replace all the tags, whether they are closed or not and let .innerHTML work out if they are matched or not it will much more resilient that way.. …
0
votes
javascript message box
It isn't possible to apply formatting to a standard dialogue box. However if you really want to format it you could flash up the message in HTML either next to the button or as a absolutel …
