Sponsored Content
Top Forums Shell Programming and Scripting Perl and string array problem Post 302434026 by pseudocoder on Thursday 1st of July 2010 06:30:40 AM
Old 07-01-2010
Quote:
Originally Posted by cola
And then i want to access these element through indexing.
How can i do this?
Code:
print $arr[1]; #prints how
print $arr[3]; #prints you

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

PERL: Searching for a string in a text file problem

Looking for a bit of help. I need to search for a string of words, but unfortunately these words are located on separate lines. for example the text output is: United Chanmpions Ronaldo Liverpool Losers Torres and my script code is print("DEBUG - checking file message"); while... (15 Replies)
Discussion started by: meevagh
15 Replies

2. Shell Programming and Scripting

Problem when assign the array with the string index

I come across the problems when assigning the array in the script below . How to use the array with the 'string index' correctly ? When I assign a new string index , the array elements that are previously assigned are all changed .:eek::eek::eek: $ array=211 $ echo ${array} 211 $... (4 Replies)
Discussion started by: youareapkman
4 Replies

3. Shell Programming and Scripting

PERL, push to hash of array problem

$key = "a"; $value = "hello"; %myhash = {} ; push @{ myHash{$key} }, $hello; print $myHash{$key}."\n"; this script prints "hello" but has following error message. Reference found where even-sized list expected at ./test line 5. can any one help me to fix this problem?? (3 Replies)
Discussion started by: bonosungho
3 Replies

4. Shell Programming and Scripting

perl string matching problem (two backslash)

I have a few .tex files generated with html2latex. They have some extra \\ that generate error with pdflatex, so I would like to get rid of them. This perl -p -i -e s/\\\\//g myfile.tex with or without simple or double quote remove all of the backslashes, also the single ones needed by tex. How... (2 Replies)
Discussion started by: ahsog
2 Replies

5. Shell Programming and Scripting

search of string from an array in Perl

Hi All I want to search a string from an array in Perl. If a match occurs, assign that string to a variable else assign 'No match'. I tried writing the script as follows but it's in vain. Please help me.. #!/usr/bin/perl use strict; my $NER; my @text=("ORG","PER"); ... (4 Replies)
Discussion started by: my_Perl
4 Replies

6. Shell Programming and Scripting

Perl nested array problem

I have a array reference which has some number of array references inside it.The nested array references also contains the array references. my $Filename = "sample.xml"; my $Parser = new XML::Parser( Style => 'tree' ); my $Tree = $Parser->parsefile( $Filename ); Here the $Tree is the... (6 Replies)
Discussion started by: karthigayan
6 Replies

7. Shell Programming and Scripting

[Perl] Strange problem with array

Hi, I have a strange problem with arrays in Perl. That is to say, for me it is strange and perhaps there is a special reason for it that I do not know of. Not a real Perl Ace. This is the program, as an example: #!/usr/bin/perl -w #-d use strict; my $pu; my $pu_list_cmd; my... (2 Replies)
Discussion started by: ejdv
2 Replies

8. Shell Programming and Scripting

[Perl] Sorting an String-Array

Hi, i have a txtfile with the format <Nr>tab<word>tab<other stuff>new line and i want to sort the <word>-colum with a perl script. My textfile: <Nr>tab<word>tab<other stuff>new line 6807 die ART.Acc.Sg.Fem 6426 der ART.Gen.Sg.Fem 2 die ART.Nom.Sg.Fem 87 auf APPR.-- 486 nicht PTKNEG.--... (1 Reply)
Discussion started by: buckelede
1 Replies

9. Shell Programming and Scripting

PERL : Read an array and write to another array with intial string pattern checks

I have an array and two variables as below, I need to check if $datevar is present in $filename. If so, i need to replace $filename with the values in the array. I need the output inside an ARRAY How can this be done. Any help will be appreciated. Thanks in advance. (2 Replies)
Discussion started by: irudayaraj
2 Replies

10. Shell Programming and Scripting

Perl string formation from array

HI I ma using perl programming my perl is like this $InputFile = $ENV{UDE_TMP} . "/" ."cre_fmr_gen.temp_data_file_gen.dat"; @duplicates = `cat $InputFile | cut -d "|" -f 1,1 | sort | uniq -c | awk '{ if(\$1>1) {print \$2;}}'`; my $cusiplist ; foreach $cusip (@duplicates) {... (1 Reply)
Discussion started by: ptappeta
1 Replies
GIT-COLA(1)							    Git Manual							       GIT-COLA(1)

NAME
git-cola - A highly caffeinated git GUI SYNOPSIS
git cola [options] DESCRIPTION
git-cola is a powerful git GUI written in Python. It has many unique features that make git's advanced features simple and accessible. See below for a full list of options and usage information. OPTIONS
--classic Launch the standalone cola classic tool. -g, --git-path Specifies the path to the git binary. --prompt Prompt for a git repository instead of auto-detecting it in the current directory. -r, --repo=<path> Run git-cola on the git repository in <path>. Defaults to the current directory. -s, --style=<style> Launch git-cola with a different stylesheet. -v, --version Print the git-cola version and exit. GUI STYLES
git-cola ships with an alternate "dark" stylesheet. Specify --style=dark or provide an external stylesheet with --style=PATH. CONFIG VARIABLES
cola.savewindowsettings Whether git-cola should remember its window settings. cola.fontdiff Specifies the font to use for git-cola's diff display. cola.classicdockable Whether to create a dock widget with the Cola Classic tool. Defaults to false to speedup startup time. gui.diffcontext The number of diff context lines used and displayed by git-cola gui.editor The default text editor is controlled by gui.editor. The config variable overrides the EDITOR environment variable. gui.historybrowser Specifies the history browser to use when visualizing history. diff.tool The default diff tool to use. merge.tool The default merge tool to use. user.email Your email address to be recorded in any newly created commits. Can be overridden by the GIT_AUTHOR_EMAIL, GIT_COMMITTER_EMAIL, and EMAIL environment variables. See linkgit:git-commit-tree[1]. user.name Your full name to be recorded in any newly created commits. Can be overridden by the GIT_AUTHOR_NAME and GIT_COMMITTER_NAME environment variables. See linkgit:git-commit-tree[1]. See linkgit:git-config[1] for more details. ENVIRONMENT VARIABLES
EDITOR Specifies the default editor to use. This is ignored when the git config variable gui.editor is defined. GIT_PYTHON_TRACE When defined, prints git commands and status to the terminal. Print more information when set to the value full. GIT_COLA_TRACE When defined, git-cola outputs the git commands it executes into the Command Output log viewer. SOURCE
A git-cola development repository can be obtained via git: git clone git://github.com/davvid/git-cola.git GUI THEMES
git-cola ships with an alternative stylesheet called dark. You can use this stylesheet by running git cola --style=dark. You can also skin git-cola by providing your own Qt stylesheet. E.g. git cola --style=/path/to/style.qss. Built-in styles can be found in /usr/share/git-cola/styles. LINKS
git-cola homepage http://cola.tuxfamily.org/ git-cola sources on github http://github.com/davvid/git-cola SEE ALSO
linkgit:git-difftool[1] Compare changes using common merge tools. linkgit:gitk[1] The git repository browser. Shows branches, commit history and file differences. gitk is the utility started by git-cola's Repository Visualize actions. GIT
git-cola is independently developed from the linkgit:git[7] suite, but you can use it just like any other git command, e.g. git cola. AUTHOR
Written by David Aguilar <davvid@gmail.com[1]>. NOTES
1. davvid@gmail.com mailto:davvid@gmail.com Git 09/01/2011 GIT-COLA(1)
All times are GMT -4. The time now is 05:26 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy