I'm trying to use a regular expression to select all of each word except the first character, much as @mahdaeng wanted to do here. The solution offered to his question was to use \B[a-z]. This works fine, except when a word contains some form of punctuation, such as "Jack's" and "merry-go-round". Is there a way to select the entire word including any contained punctuation? (Not including outside punctuation such as "? , ." etc.)
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
|
If you can enumerate the acceptable in-word punctuation, you could just expand upon the answer you linked:
|
|||
|
|
|
A regex really isn't necessary here, since you can just
The output is:
|
||||
|
(where
|
|||
|