I'm trying to work out what regular expression I would need to take a value and replace spaces with a dash (in Javascript)?
So say if I had North America, it would return me North-America ?
Can I do something like var foo = bar.replace(' ', '-') ?
|
I'm trying to work out what regular expression I would need to take a value and replace spaces with a dash (in Javascript)? So say if I had North America, it would return me North-America ? Can I do something like |
||||
|
|
|
It's better to use:
to replace all occurrences. |
|||||||||||||||
|
|
Yes, you can. Why didn't you try this before asking? |
|||
|
|
The best source of information for regular expressions in various languages that I've found is Regular-Expressions.info (and I linked directly to the Javascript section there). As for your particular question, yes, you can do something like that. Did you try it?
Use the site I showed you to analyze the regex above. Note how it replaces one or more spaces with a single hyphen, as you requested. |
|||
|
|
|
For the most regular expressions, you can do it by testing with the regular expression tester. |
|||
|
|