ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Perl Data Types
    Perl 2014. 11. 18. 23:57

    Perl is loosely typed language and there is no need to specify a type for your data while using in your program. The Perl interpreter will choose the type based on the context of the data itself.

    Perl has three basic data types: scalars, arrays of scalars, and hashes of scalars, also known as associative arrays. Here is little detail about these data types.

    S.N.Types and Description
    1Scalar:
    Scalars are simple variables. They are preceded by a dollar sign ($). A scalar is either a number, a string, or a reference. A reference is actually an address of a variable which we will see in upcoming chapters.
    2Arrays:
    Arrays are ordered lists of scalars that you access with a numeric index which starts with 0. They are preceded by an "at" sign (@).
    3Hashes:
    Hashes are unordered sets of key/value pairs that you access using the keys as subscripts. They are preceded by a percent sign (%).

    Numeric Literals

    Perl stores all the numbers internally as either signed integers or double-precision floating-point values. Numeric literals are specified in any of the following floating-point or integer formats:

    TypeValue
    Integer1234
    Negative integer-100
    Floating point2000
    Scientific notation16.12E14
    Hexadecimal0xffff
    Octal0577

    String Literals

    Strings are sequences of characters. They are usually alphanumeric values delimited by either single (') or double (") quotes. They work much like UNIX shell quotes where you can use single quoted strings and double quoted strings.

    Double-quoted string literals allows variable interpolation, and single-quoted strings are not. There are certain characters when they are proceeded by a back slash they will have special meaning and they are used to represent like newline (\n) or tab (\t).

    You can embed newlines or any of the following Escape sequences directly in your double quoted strings:

    Escape sequenceMeaning
    \\Backslash
    \'Single quote
    \"Double quote
    \aAlert or bell
    \bBackspace
    \fForm feed
    \nNewline
    \rCarriage return
    \tHorizontal tab
    \vVertical tab
    \0nnCreates Octal formatted numbers
    \xnnCreates Hexideciamal formatted numbers
    \cXControl characters, x may be any character
    \uForce next character to uppercase
    \lForce next character to lowercase
    \UForce all following characters to uppercase
    \LForce all following characters to lowercase
    \QBackslash all following non-alphanumeric characters
    \EEnd \U, \L, or \Q

    Example

    Let's see again how strings behaves with single quotation and double quotation. Here we will use string escapes mentioned in the above table and will make use of scalar variable to assign string values.

    #!/usr/bin/perl
    
    # This is case of interpolation.
    $str = "Welcome to \ntutorialspoint.com!";
    print "$str\n";
    
    # This is case of non-interpolation.
    $str = 'Welcome to \ntutorialspoint.com!';
    print "$str\n";
    
    # Only W will become upper case.
    $str = "\uwelcome to tutorialspoint.com!";
    print "$str\n";
    
    # Whole line will become capital.
    $str = "\UWelcome to tutorialspoint.com!";
    print "$str\n";
    
    # A portion of line will become capital.
    $str = "Welcome to \Ututorialspoint\E.com!"; 
    print "$str\n";
    
    # Backsalash non alpha-numeric including spaces.
    $str = "\QWelcome to tutorialspoint's family";
    print "$str\n";

    This will produce following result:

    Welcome to
    tutorialspoint.com!
    Welcome to \ntutorialspoint.com!
    Welcome to tutorialspoint.com!
    WELCOME TO TUTORIALSPOINT.COM!
    Welcome to TUTORIALSPOINT.com!
    Welcome\ to\ tutorialspoint\'s\ family


    'Perl' 카테고리의 다른 글

    Txt 파일내에 있는 해당 데이터(단어)를 추출하여 Data Count 수행  (0) 2015.03.25
    split 사용법  (0) 2014.12.23
    Perl 주석  (0) 2014.12.03
    [Perl] 변수 모음  (0) 2014.11.18
Designed by Tistory.