How do I create an array of strings from a string, eg.
"hello world" would return ["hello", "world"]. This would need to take into account punctuation marks, etc.
There's probably a great RegEx solution for this, I'm just not capable of finding it.
|
How do I create an array of strings from a string, eg. "hello world" would return ["hello", "world"]. This would need to take into account punctuation marks, etc. There's probably a great RegEx solution for this, I'm just not capable of finding it.
| |||||||
feedback
|
|
Any reason that:
Won't work? | |||||||
feedback
|
|
How about AS3's String.split?
| |||
feedback
|
|
Maybe this one works too...
That should work in languages other than English, for example (i.e. '\w' won't accept accented characters, for instance...) | |||
|
feedback
|
|
This seems to do what you want:
If not, please provide a sample input and output specification. | |||||||||||
feedback
|
|
Think I've cracked it, here is the function in full:
Basically, it uses the 'not a word' condition but excludes apostrophes, is global and ignores case. Thanks to everyone who pointed me in the right direction. | |||
feedback
|
|
I think you might want something like this:
Basically, you can add any characters that you want to be considered delimiters into the square brackets. Here's how the pieces work:
| |||
|
feedback
|
|
Here's what you need. Tested and working:
| ||||
|
feedback
|