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.

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.)

share|improve this question

3 Answers

up vote 1 down vote accepted

If you can enumerate the acceptable in-word punctuation, you could just expand upon the answer you linked:

\B[a-zA-Z'-]+
share|improve this answer
Exactly what I needed! Thanks! – Nathan Arthur Feb 29 '12 at 1:14

A regex really isn't necessary here, since you can just split your word on spaces and deal with each word accordingly. Since you don't mention an underlying language, here's an implementation in Perl:

use strict;
use warnings;

$_="Jack's merry-go-round revolves way too fast!";
my @words=split /\s+/;
foreach my $word(@words)
{
  my $stripped_word=substr($word,1);
  $stripped_word=~s/[^a-z]$//i; #stripping out end punctuation
  print "$stripped_word\n";
}

The output is:

ack's
erry-go-round
evolves
ay
oo
ast
share|improve this answer
Great approach! Sadly, I'm actually using InDesign grep styles, so can't really use this method. – Nathan Arthur Feb 29 '12 at 1:12
\B[^\s]+

(where ^\s means "not whitespace") should get you what you want assuming the words are whitespace-delimited. If they're also punctuation-delimited, you might need to enumerate the punctuation:

\B[^\s,.?!]+
share|improve this answer
Wow! That's awesome! I'll have to remember this method. In my case, however, I think it would probably stay less hairy to delineate what is allowed instead of what isn't. – Nathan Arthur Feb 29 '12 at 1:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.