Sponsored Content
Homework and Emergencies Homework & Coursework Questions passing letters from an array into a string for string comparison Post 302602973 by lotsofideas on Tuesday 28th of February 2012 09:08:39 PM
Old 02-28-2012
passing letters from an array into a string for string comparison

attempting the hangman program. This was an optional assignment from the professor. I have completed the logical coding, debugging now.

##I have an array $wordString[] that initializes to a string of dashes
##reflecting the number of letters in $theWord
##every time the user enters a (valid) letter this function is called and $letter is passed to it as $1
function updateWordString()
{
for ((x=1;x <= $numberOfLettersInTheWord;x++))
do
currentLetter=$(echo $theWord|head -c $x|tail -c 1)
if [ "$1" == "$currentLetter" ]
then
wordString[$x]="$currentLetter"
fi
done
}


##The problem now is that i have an array that look like "f o o b a r"
##So when i want to test in the following function if the user has completed
## the word, in essence its testing if "foobar" == "f o o b a r"

function isGameOver()
{
if [ "$theWord" == "${wordString[*]}" ]
then
return 2
fi
}

touro nyc, msis616 Prof Robinson

Thanks
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Removing Letters from Integer String

Hi all, I have a variable, on some machines it is '1024', which is fine, but on others it is '1024Mb' etc. I need this variable to simply be '1024', does anyone know how I could ensure this is always the case? Perhaps a command to remove any letters/characters that aren't integers if there is... (3 Replies)
Discussion started by: hodges
3 Replies

2. Shell Programming and Scripting

string comparison

Hello experts, (tcsh shell) Quite new to shell scripting... I have got a file with a single word on each line. Want to be able to make a comparison such that i can read pairs of words that are ROT13 to each other. Also, i would like to print the pairs to another file. Any help... (5 Replies)
Discussion started by: Jatsui
5 Replies

3. UNIX for Dummies Questions & Answers

string comparison

Hi Guys i need to write a script to check the file structure I have added the the file headers in the configuration file and execute the file at the start of the script. Now the function checkFileStructure() { echo "Inside the function" filetocheck=$1 fileheader=$2 if ] then... (1 Reply)
Discussion started by: Swapna173
1 Replies

4. Shell Programming and Scripting

String Comparison

Is there a way to compare the permission string of two files and output the string if they match? For ex: -rw-r--r-- 1 user newuser 0 2009-03-12 16:45 file2 -rw-r--r-- 1 user newuser 0 2009-03-12 16:46 fileone output: -rw-r--r-- If they don't match output will be just... (3 Replies)
Discussion started by: squardius
3 Replies

5. Shell Programming and Scripting

Help with string comparison

#!/bin/sh PRINTF=/usr/bin/printf MACHINE_NAME=`uname -n` TIME=`date +"%H"` $PRINTF "Welcome to $MACHINE_NAME. What is your name?\n" read NAME if ; then $PRINTF "Good morning $NAME, how are you?\n" elif ; then $PRINTF "Good afternoon $NAME, how are you?\n" else $PRINTF "Good... (2 Replies)
Discussion started by: ikeQ
2 Replies

6. Shell Programming and Scripting

to extract string from main string and string comparison

continuing from my previous post, whose link is given below as a reference https://www.unix.com/shell-programming-scripting/171076-shell-scripting.html#post302573569 consider there is create table commands in a file for eg: CREATE TABLE `Blahblahblah` ( `id` int(11) NOT NULL... (2 Replies)
Discussion started by: vivek d r
2 Replies

7. Shell Programming and Scripting

Reading a string and passing passing arguments to a while loop

I have an for loop that reads the following file cat param.cfg val1:env1:opt1 val2:env2:opt2 val3:env3:opt3 val4:env4:opt4 . . The for loop extracts the each line of the file so that at any one point, the value of i is val1:env1:opt1 etc... I would like to extract each... (19 Replies)
Discussion started by: goddevil
19 Replies

8. Shell Programming and Scripting

awk : match only the pattern string , not letters or numbers after that.

Hi Experts, I am finding difficulty to get exact match: file OPERATING_SYSTEM=HP-UX LOOPBACK_ADDRESS=127.0.0.1 INTERFACE_NAME="lan3" IP_ADDRESS="10.53.52.241" SUBNET_MASK="255.255.255.192" BROADCAST_ADDRESS="" INTERFACE_STATE="" DHCP_ENABLE=0 INTERFACE_NAME="lan3:1"... (6 Replies)
Discussion started by: rveri
6 Replies

9. Shell Programming and Scripting

awk string comparison unterminated quoted string andrule of thumb

I have the logic below to look up for matches within the columns between the two files with awk. In the if statement is where the string comparison is attempted with == The issue seems to be with the operands, as 1. when " '${SECTOR}' " -- double quote followed by single quote -- awk matches... (1 Reply)
Discussion started by: deadyetagain
1 Replies

10. UNIX for Beginners Questions & Answers

awk Associative Array and/or Referring to Field by String (Nonconstant String Value)

I will start with an example of what I'm trying to do and then describe how I am approaching the issue. File PS028,005 Lexeme HRS # M # PhraseType 1(1:1) 7(7) PhraseLab 501 503 ClauseType ZYq0 PS028,005 Lexeme W # L> # BNH # M #... (17 Replies)
Discussion started by: jvoot
17 Replies
bc(1)							      General Commands Manual							     bc(1)

Name
       bc - interactive arithmetic language processor

Syntax
       bc [-c] [-l] [file...]

Description
       The command provides an interactive processor for a language which resembles C but provides unlimited precision arithmetic.  It takes input
       from any files given, then reads the standard input.  The -l argument stands for the name of an arbitrary precision math library.  The syn-
       tax for programs is as follows: L means letter a-z, E means expression, S means statement.

       Comments
	     are enclosed in /* and */.

       Names
	     simple variables: L
	     array elements: L [ E ]
	     The words `ibase', `obase', and `scale'

       Other operands
	     arbitrarily long numbers with optional sign and decimal point.
	     ( E )
	     sqrt ( E )
	     length ( E )   number of significant decimal digits
	     scale ( E )    number of digits right of decimal point
	     L ( E , ... , E )

       Operators
	     +	-  *  /  %  ^ (% is remainder; ^ is power)
	     ++   --	     (prefix and postfix; apply to names)
	     ==  <=  >=  !=  <	>
	     =	+=  -=	*=  /=	%=  ^=

       Statements
	     E
	     { S ; ... ; S }
	     if ( E ) S
	     while ( E ) S
	     for ( E ; E ; E ) S
	     null statement
	     break
	     quit

       Function definitions
	     define L ( L ,..., L ) {
		  auto L, ... , L
		  S; ... S
		  return ( E )
	     }

       Functions in -l math library
	     s(x) sine
	     c(x) cosine
	     e(x) exponential
	     l(x) log
	     a(x) arctangent
	     j(n,x)    Bessel function

       All function arguments are passed by value.

       The  value  of  a statement that is an expression is printed unless the main operator is an assignment.	Either semicolons or new lines may
       separate statements.  Assignment to scale influences the number of digits to be retained on arithmetic operations in the manner of  Assign-
       ments to ibase or obase set the input and output number radix respectively.

       The  same  letter  may  be  used  as  an array, a function, and a simple variable simultaneously.  All variables are global to the program.
       `Auto' variables are pushed down during function calls.	When using arrays as function arguments or defining them  as  automatic  variables
       empty square brackets must follow the array name.

       The following example defines a function to compute an approximate value of the exponential function:
       scale = 20
       define e(x){
	    auto a, b, c, i, s
	    a = 1
	    b = 1
	    s = 1
	    for(i=1; 1==1; i++){
		 a = a*x
		 b = b*i
		 c = a/b
		 if(c == 0) return(s)
		 s = s+c
	    }
       }

       The following command line then prints approximate values of the exponential function of the first ten integers:
	    for(i=1; i<=10; i++) e(i)

       The  command  is  actually a preprocessor for which it invokes automatically, unless the -c (compile only) option is present.  In this case
       the input is sent to the standard output instead.

Options
       -c		   Compiles input only.

       -l		   Names arbitrary precision math library.

Restrictions
       The for statement must have all three E's.

       Quit is interpreted when read, not when executed.

       Variables must be a single lower case letter.  Upper case letters are used only as digits for bases greater than 10.

Files
       mathematical library

See Also
       dc(1)
       ``BC - An arbitrary precision desk-calculator language'' ULTRIX Supplementary Documents Vol. 1: General User

																	     bc(1)
All times are GMT -4. The time now is 11:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy