Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Andrey Kostenko http://kostenko.name

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Cutting of part of the unicode line

// description of your code here

   1  
   2  sub left_subject{
   3  	my $self=shift;
   4  	my $count=shift;
   5  	use utf8;
   6  	my $topic=$self->subject;
   7  	utf8::decode($topic);
   8  	utf8::upgrade($topic);
   9  	my ($subtopic)=($topic=~/(.{0,$count})/);
  10  #	utf8::decode($subtopic);
  11  	$subtopic=~s/\b\w{1,5}$//;
  12  	utf8::downgrade($subtopic);
  13  	return $subtopic.'...';
  14  }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS