I need to convert a string like this:
tag, tag2, longer tag, tag3
to:
tag, tag2, longer-tag, tag3
To make this short, I need to replace spaces not preceded by commas with hyphens, and I need to do this in Javascript.
|
I need to convert a string like this:
to:
To make this short, I need to replace spaces not preceded by commas with hyphens, and I need to do this in Javascript. |
|||
|
|
|
I think this should work
Edit: Updated after Blixt's observation. |
|||||||||||
|
|
|
|||
|
|
Unfortunately, Javascript doesn't seem to support negative lookbehinds, so you have to use something like this (modified from here):
|
|||
|
|
([^,] ) - first character is not comma, the second character is space and it searches for that kind of string |
|||
|
|
|
Edit Sorry, didn't notice the replace before. I've now updated my answer:
|
||||
|
|