Help for this page

Select Code to Download


  1. or download this
    gi|12345678|ref|NP_001234.1|
    
  2. or download this
    $data = gi|12345678|ref|NP_001234.1|;
    @data = split ('gi|',$data);
    @data1 = split ('|ref',$data[1]);
    $number = $data1[0];
    
  3. or download this
    $data = gi|12345678|ref|NP_001234.1|;
    @data = split ('gi',$data);
    @data1 = split ('ref',$data[1]);
    $number = $data1[0];
    
  4. or download this
    $number =~ m/[0-9]*/;