python分拆字符串

一个字符串如形式如:IM_ARABIC_SUPPORT。

需要取出中间得“ARABIC”来用。

写一个函数如下:

def getCenterWord(word):
	n = word.find("_")
	m = word.find("_",n+1)
	return word[n+1:m]

虽然没perl简单,但比perl好理解。

实际做了一下,perl做这个也不简单,可能效率还没上面高:

$word =~ s/[^_]*_//;
$word =~ s/_[^_]*//;

或者:

if ($word =~ m/_([^_]*)_/)
{
    print($1);
}



你可能感兴趣的:(python分拆字符串)