String handling


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting String handling
# 1  
Old 12-02-2009
String handling

shell script to input two strings and stripe out the second string from the first string either from the beginning or from the end as per the user's choice
# 2  
Old 12-02-2009
Both your question and the way you ask it sounds very homeworky...

If you want to ask a homework question, you have a couple of options:

1. Use the proper forum; or
2. Use your imagination and try not to make it sound homeworky.

If it's not a homework question, at least point 2 still stands.

Last edited by Scott; 12-02-2009 at 03:20 PM.. Reason: removed point 3
# 3  
Old 12-03-2009
Hello.......

Sorry to say that if these would be homework questions...then in previously asked questions i would not send my codes and ask to debug or correct......
i would straight away post the question......string handling problem i didn't understood...so i post my problem....
# 4  
Old 12-03-2009
Hi,

Didn't understand the second part of the question i.e. to search from the beginning or end. Can you please demonstrate with an example?

Does the below code help?

Code:
#!/usr/bin/sh

echo "Enter the first string: \c"
read t
echo "Enter the search string to strip: \c"
read u

echo $t | sed "s/\(.*\)\($u\)\(.*\)/\1\3/g"
exit;

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Handling Comma in string values in a CSV file

Hi have a comma separated file which has numeric and string columns. String columns are quoted and can have comma in between the quotes. How to identify the columns with FS ="," sample records"prabhat,kumar",19,2000,"bangalore,India" In awk it should be$1 = prabhat,kumar $2=19 $3=2000... (9 Replies)
Discussion started by: prabhat.diwaker
9 Replies

2. Shell Programming and Scripting

sed or awk command to replace a string pattern with another string based on position of this string

here is what i want to achieve... consider a file contains below contents. the file size is large about 60mb cat dump.sql INSERT INTO `table1` (`id`, `action`, `date`, `descrip`, `lastModified`) VALUES (1,'Change','2011-05-05 00:00:00','Account Updated','2012-02-10... (10 Replies)
Discussion started by: vivek d r
10 Replies

3. Shell Programming and Scripting

Handling null Integer/string variables

I kind of found out the hard way that I am not able to manipulate the null value, the long silence that happens when there is no value returned. I am looking for PIDs, and when there is no PID return, I wanted to handle this special scenario. Here is my script. #!/bin/bash LAN_VARIABLE=... (7 Replies)
Discussion started by: lan123
7 Replies

4. Shell Programming and Scripting

Handling string

I have to source a file "varname" the content of varname file is like this: #ani ani1 = abc_ani ani2 = def_ani #sham sham1 = abc_sham sham2 = abc_sham Now i need to extract any line containing "ani: in it. And then store the extracted info in a file. (3 Replies)
Discussion started by: animesharma
3 Replies

5. Shell Programming and Scripting

String handling is not working inside if loop

Hi All, I am comparing two strings inside an if condition if the strings are same then it should go inside the loop else it should execute code given in else part. But there is a but inside my script Even if the if condition is true it is not going inside the loop also it is executing... (4 Replies)
Discussion started by: usha rao
4 Replies

6. Programming

[C] help with string handling memory leak

Ok, so I've been trying to figure out my fualt in this code for probably a week now. Hopefully somebody will see what I couldn't see. Anyways, any help would be greatly appreciated. Lets begin. void serverStatus( const char* data ) { char* s ; int i, l = 0 ; ... (3 Replies)
Discussion started by: VRoemer
3 Replies

7. UNIX for Advanced & Expert Users

File Handling

Hi, I have a log file which runs into 3 to 5 GB. We store this typically for 6 months. When a new month starts we move the previous month into a 9 month back up log (file.9m) and delete the last month of the 9 month back up. Iam using awk to find the data and cat to join the files like... (3 Replies)
Discussion started by: baanprog
3 Replies

8. UNIX for Dummies Questions & Answers

handling a coredump on HP?

This works for all my normal executions. But on one machine, a coredump is expected on one command. We don't care and know it will always happen, but need to confirm the version info from the start of the output. This is output from the exe: $ ./Up -*-*- XXXXXXX UPDATE XXXXX Version... (7 Replies)
Discussion started by: brdholman
7 Replies

9. Programming

file handling

Hi all, I got a little issue here. Imagine that I have more than one process accessing one file. Is it possible to know which process(es) are accessing that file when I open the file?? Thanks for the help. Best regards, Ernesto (2 Replies)
Discussion started by: ninjanesto
2 Replies

10. UNIX for Dummies Questions & Answers

String Handling

I am writing a Shell Script. :) Now i've problem in handling a string. Eg: read string1 after i read in the string, i wan to add a space after it. I've tried 1.) $string1 += " " 2.) string1 += " " But both way cant works. Does anyone got any idea how to solve my problem?... (2 Replies)
Discussion started by: AkumaTay
2 Replies
Login or Register to Ask a Question