Parsing char string


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Parsing char string
# 1  
Old 08-07-2008
Tools Parsing char string

I am stumped! I need to parse an input parameter to a script that has the form '-Ort'. I basically need 'O', 'r' and 't', i.e. the individual characters in the string parsed.

Since there are no delimiters, I don't know how awk could do this. Can someone tell how to do this, this should be a common task in writing scripts?
ALTRUNVRSOFLN
# 2  
Old 08-07-2008
Tools Does the following help?

Code:
> echo '-Ort' | awk '{print substr($0,2,1)}'
O
> echo '-Ort' | awk '{print substr($0,3,1)}'
r
> echo '-Ort' | awk '{print substr($0,4,1)}'
t

# 3  
Old 08-07-2008
Another Ways (get second char) :
Code:
echo '-Ort' | cut -c2  
expr substr '-Ort' 2 1

Jean-Pierre.
# 4  
Old 08-07-2008
Code:
echo '-Ort' | awk -F\- '{gsub(".","&\n",$2);printf("%s",$2)}'

# 5  
Old 08-07-2008
if you are parsing the argunments send by you in a script. like
./yscript.sj -orT

the you could use getops
Getopt and getopts
# 6  
Old 08-07-2008
Or this one
Code:
echo '-Ort' | awk 'BEGIN{FS=""}{for(i=1;i<=NF;i++)if($i ~ "[a-zA-Z]"){print $i}}'

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Parsing of Char and Numeric in a file

Hi All, i'm working on some report and currently have this plain text file generated. server_name1|sdfd1deal | 1048572| 1040952| 99| 207| 1| 1 server_name1|dba1dbs | 83886048| 40730796| 48| 5762| 22764| 8... (4 Replies)
Discussion started by: fedora132010
4 Replies

2. Programming

C++ Using open on a string instead of char*

I am using ifstream to open a file using std::fstream::open void open ( const char * filename, ios_base::openmode mode = ios_base::in ); However I want to use a string instead of a char* as follows but having a problem on how to do this string val_ifmodl = “fred.modl” ifstream ifs_modl;... (2 Replies)
Discussion started by: kristinu
2 Replies

3. Shell Programming and Scripting

Parsing a long string string problem for procmail

Hi everyone, I am working on fetchmail + procmail to filter mails and I am having problem with parsing a long line in the body of the email. Could anyone help me construct a reg exp for this string below. It needs to match exactly as this string. GetRyt... (4 Replies)
Discussion started by: cwiggler
4 Replies

4. Shell Programming and Scripting

How to loop through every char in a string

for example this string: gLZMQp8i Loop become easy if we add space between each char, How to do it? or other solutions are welcome. (9 Replies)
Discussion started by: honglus
9 Replies

5. Shell Programming and Scripting

Parsing of file for Report Generation (String parsing and splitting)

Hey guys, I have this file generated by me... i want to create some HTML output from it. The problem is that i am really confused about how do I go about reading the file. The file is in the following format: TID1 Name1 ATime=xx AResult=yyy AExpected=yyy BTime=xx BResult=yyy... (8 Replies)
Discussion started by: umar.shaikh
8 Replies

6. Shell Programming and Scripting

Parsing X char from right to left

I am new to bash scripts I need something quite easy to do in VBS, When I wanted to get the first 5 chars I used funcition right(5,strGet) how can I do the same in bash? I am trying to get the MAC address in Ubuntu I have done so far ifconfig wlan2 | grep HWaddr | awk '{print $5}' | sed -e... (3 Replies)
Discussion started by: 4scriptmoni
3 Replies

7. Shell Programming and Scripting

how to get number char from a string

for example: i hav a string like : /rmsprd/arch01/rmsprd/rmsprdarch72736.log how I can extract my_num=72736? I know I can echo "/rmsprd/arch01/rmsprd/rmsprdarch72736.log" | tr "/" " " | awk '{ print $4 }' to get rmsprdarch72736.log (4 Replies)
Discussion started by: netbanker
4 Replies

8. Shell Programming and Scripting

last char from a string

i have a script that reads a plain text file. (its a ksh, and i can use bash also) each line of the file is a fullpath of a file. that makes the list huge. i need to add a functionalitie to that script, i have to be able to add /usr/* or /usr/ and with that reference all the files and folders... (6 Replies)
Discussion started by: broli
6 Replies

9. Programming

replacing char with string

how we can replace char with a string example char *a="a.s" so finally what i ant to do raplace a with ant and s sree so in my array a i want to store the value as "ant.sree" thank u in advance (1 Reply)
Discussion started by: phani_sree
1 Replies

10. UNIX for Dummies Questions & Answers

string of 7 char length always...

Hi, I know, particular value in the variable should always be of lenth 7 , but the value that is present in thevariable might be of any no.of characters less than or equal to 7... if the no.of characters in the variable is less than 7, I want to add, zeroes at the starting of the field.. How can... (3 Replies)
Discussion started by: thanuman
3 Replies
Login or Register to Ask a Question