How would you go around to collect the first letter of each word in a string, as in to receive an abbreviation?
String: "Java Script Object Notation"
Wanted result: "JSON"
|
How would you go around to collect the first letter of each word in a string, as in to receive an abbreviation?
|
|||
|
|
|
I think what you're looking for is the acronym of a supplied string.
Note: this will fail for hyphenated/apostrophe'd words |
|||||||||
|
|
I think you can do this with
Explanation: Obtain all Depending on what you want to do you can also consider simply selecting all the uppercase characters:
|
|||||||||||
|
|
How about this:
|
|||
|
|
|
Try -
Demo - http://jsfiddle.net/r2maQ/ |
|||
|
|
|
This should do it.
|
||||
|
|