perl 문자 치환관련

tss123의 이미지

32비트 바이너리 코드를

한행에 한 비트씩 표시되도록 변환하는 perl 을 만들고 싶은데

생각처럼 잘되지 않습니다.

#!/usr/bin/perl
 
$/ = '';
 
%b2b = (0 => "0\n",
        1 => "1\n",
};
while(<>){
      chomp;
            ($binary = $_) =~ s/(.)/$b2b{1c $1}/g;
            print $binary;

0000111100001111 이 입력된 파일을
1111000011110000

0
0
0
0
1
1
1
1
0
0
0
0
1
1
1
1
0
0
0
0
1
1
1
1
0
0
0
0
1
1
1
1
0
0
0
0

이런식으로 바꾸고 싶은데 원하는 결과값이 나오지 않습니다. 조언 부탁드립니다

amorette의 이미지

%b2b와 같은 해시 변수에 해시의 목록을 넣을 때에는

%b2b = ( "키1" => "값2", "키2" => "값2", ... );

이렇게 넣습니다. 앞에는 올바르게 괄호 ( 로 열었는데 닫을 때에는 중괄호 } 로 닫았습니다.

그리고 while문의 형태는 이러합니다.

while (조건) {
  문장;
  문장;
  ...
}

while 문의 블락에서 중괄호 { 를 열으셨는데 중괄호 } 를 맨 마지막에 닫지 않았습니다.

아래와 같은 코드는 정규표현식 입니다.

s/(.)/$b2b{1c $1}/g;

정규표현식은 변수의 문자열에 대해 치환을 합니다.

$str =~ s/A/B/g;

예를들어 이렇게 쓰면 $str 문자열의 모든 "A" 문자열을 "B"로 바꾸는 식입니다.

특히 이 정규표현식에서 1c는 1c가 아니라 lc(소문자L)입니다.
lc는 입력된 값을 모두 lowercase하여 반환합니다. 그런데 여기서는 0과 1일 뿐이므로 단순히

s/(.)/$b2b{$1}/g;

라고 해도 무방합니다.

정규표현식에 대해서는 http://gypark.pe.kr/wiki/Perl/%EC%A0%95%EA%B7%9C%ED%91%9C%ED%98%84%EC%8B%9D
여기를 보세요.

while 반복문
http://blog.naver.com/PostView.nhn?blogId=wogh999&logNo=20115296076

%hash 해시
http://mwultong.blogspot.com/2006/09/perl-hash.html

lc함수
http://perldoc.perl.org/functions/lc.html

아래는 온라인으로 열람할 수 있는 펄 입문서입니다.
http://www.onyxneon.com/books/modern_perl/index.html
http://books.simon-cozens.org/index.php/Beginning_Perl

Learning Perl 번역본
http://books.perl.kr/lp5/

#!/usr/bin/perl
 
$/ = '';
 
%b2b = (0 => "0\n",
        1 => "1\n",
);
while(<>){
    chomp;
    ($binary = $_) =~ s/(.)/$b2b{lc $1}/g;
    print $binary;
}
amorette의 이미지

$str = "0000111100001111";

일때, "111100001111000"과 같이 변환하고 싶으시다면 이렇게:

$str =~ y/01/10/;

0
0
0
0
1
1
1
1
...
과 같이 개행문자를 각각 넣고 싶으시면 이렇게:

$str =~ s/./$&\n/g;

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.