[완료]perl 에서 특정문자 갯수 세기

ascendo의 이미지

안녕하세요

텍스트 파일내에

###
#
#
12
sfdsf
----
====
# # #

이러한 내용들이 들어 있을때

특정문자

예를 들어 # 같은 문자의 갯수를 구하는 방법을 알고 싶습니다.

AGRV 하고 tr 쓰면 된다고 하는데

정확히 어려워서 잘모르겠습니다.

부탁드립니다.

pcharley의 이미지

test.txt 문서안에 "#" 문자 갯수를 구하는 방법

cat test.txt | perl -ne 'BEGIN{$sum=0}; chomp; if (/(#+)/) {$i=length($1); $sum=$sum+$i;} END{print "$sum\n"}'

하지만 위 방법의 가장 큰 단점은
"###alalalalaal##", "# # #", "###aaa###aaa##"
위 같은 문장의 경우 뒤에 오는 "#"을 지나친다는 겁니다.

이것도 무슨 방법이 있겠지만....저는 여기까지만 하겠습니다...
ㅡ.ㅡ;

jick의 이미지

$cnt = 0;
while (<>) { $cnt += s/#//g; }
print "count = $cnt\n;"

지금 윈도우즈라서 돌려볼 수가 없는 환경이라 100% 장담은 못합니다. (s//는 substitution이 일어난 횟수를 돌려주죠.)

pcharley의 이미지

#!/usr/bin/perl
undef $/;
undef $i;

$all = <>;
for (split //, $all)
{
if (/#/)
{
$i++;
}
}
print $i, "\n";

byteme의 이미지

$/="";print<>=~y/#//;

keedi의 이미지

파일처리는...

open my $fh "sample.txt"
    or die "cannot open file : $!\n";
my $str = do { local $/; <$fh> };
close $fh;

또는 OO 스타일로 사용하면...

use FileHandle;
 
my $fh = FileHandle->new;
$fh->open("regexp.pl")
    or die "cannot open file: $!\n";
my $str = do { local $/; <$fh> };
$fh->close;

검색 + 개수 세기 역시 방법은 많지만 간단하게 하면...

my $count = () = ($str =~ m/#/g);

---------------------------
Smashing Watermelons~!!
Whatever Nevermind~!!

Keedi Kim

----
use perl;

Keedi Kim

ai의 이미지

cookbook 에서 읽었던 내용으로 기억합니다.

my %hash;
map {$hash($_}++} split //, $file_stream;

--
War doesnt determine whos right, just whos left.

War doesnt determine whos right, just whos left.

bushi의 이미지

:지움:
제목을 못보고 이상한 댓글을 달았습니다.
perl 질문이었군요.

OTL

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.