creating a delimiter string


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting creating a delimiter string
# 1  
Old 05-21-2008
Java creating a delimiter string

hi
i have a function
Code:
printValues()
{
var=$#
count=0
qName=""
while [ $count -lt $var ]
do
         if [ $count = 0 ]
        then
            echo QManager Name $1
        fi
        if [ $count = 1 ]
        then
             echo Cluster Name$2
        fi
        if (( $count != 0  && $count != 1 ))
        then
             echo Queue Name  $count
        fi

        count=`expr $count + 1`
 done
}


QManager Name LPDMA520
Cluster NameESBUSCLT01
Queue Name 2
Queue Name 3
but i want Queue Name as 3rd and 4th args

please help

Last edited by Yogesh Sawant; 05-21-2008 at 07:22 AM.. Reason: added code tags
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Separate string based on delimiter

Hi, for fd in $(grep "/tmp/" hello.properties)The grep gives me the below output: deploydir=/tmp/app1/dfol prodir= /tmp/hello/prop ...... Now i want to store /tmp/app1/dfol then /tmp/hello/prop in a variable so that i can check if those folders files exists or not. The delimiter would... (4 Replies)
Discussion started by: mohtashims
4 Replies

2. Shell Programming and Scripting

Extract string between two delimiter

I want a string between two delimeter like ( ) from file. Input File, 2007_08_07_IA-0100-014_(January).PDF 2007_08_07_IA-0100-031_(January February March April June July).PDF 2008-02-28_KR-1022-003_(January febuary march april may).CSV Output File, January January February... (19 Replies)
Discussion started by: Pratik Majithia
19 Replies

3. Shell Programming and Scripting

Cutting a string using more than one character as delimiter

Hi , I have a set of files in a folder which i need to cut in to two parts.... Sample files touch AE_JUNFOR_2014_MTD_2013-05-30-03-30-02.TXT touch AE_JUNFOR_2014_YTD_2013-05-30-03-30-02.TXT touch temp_AE_JUNFOR_2014_MTD_2013-05-30-03-30-02.TXT touch... (4 Replies)
Discussion started by: chillblue
4 Replies

4. Shell Programming and Scripting

how to cut all string after the last delimiter?

hi all, suppose a string: abc/def/ghi/jkl/mn.txt and i want to get the file name without the path. however, different files have different paths, therefore the number of delimiter is uncertain. thanks so much! (3 Replies)
Discussion started by: sunnydanniel
3 Replies

5. Shell Programming and Scripting

Creating delimiter file

#/bin/sh sysdate=`date +"%m/%d/%Y"` systime=`date +%r` ps_per=`lsps -s | nawk '{print $2+0}'|tail -1` ps_tot=`lsps -s | nawk '{print $1+0}'|tail -1` lcpu=`vmstat | nawk -F= '/lcpu/ {print $2+0}'` mem_tot=`vmstat | nawk -F= '/mem=/ {print $3+0}'` avm=`vmstat|awk '{print... (7 Replies)
Discussion started by: Daniel Gate
7 Replies

6. Shell Programming and Scripting

creating delimiter file & append with cron

I have the following script working fine, and need to generate a file delimiter (with tab or special character) for Excel data import. The script will run every hour in crontab to append the new rows to the delimiter, so that I can collect the data for i.e. a week, which will give me a lot of... (0 Replies)
Discussion started by: Daniel Gate
0 Replies

7. Shell Programming and Scripting

How to split a string with no delimiter

Hi; I want to write a shell script that will split a string with no delimiter. Basically the script will read a line from a file. For example the line it read from the file contains: 99234523 These values are never the same but the length will always be 8. How do i split this... (8 Replies)
Discussion started by: saint34
8 Replies

8. Shell Programming and Scripting

Delimiter count in a string.

Hi , I need to get the delimiter "-" count in a particular string. string= SYS_NAME-123-S5-2008-10-20.LOG the delimit "-" count is 5 . Using sed or awk can I know the count ? I have seen how to get the count for delimiter in a file but not a string :( Thanks, Priya (8 Replies)
Discussion started by: priyam
8 Replies

9. Shell Programming and Scripting

Parsing string using specific delimiter

Hi, I'm wondering what is the best way to parse out a long string that has a specific deliminator and outputting each token between the delim on a newline? i.e. input text1,text2,text3,tex4 i.e. output text1 text2 text3 text4 (8 Replies)
Discussion started by: primp
8 Replies

10. Shell Programming and Scripting

split string with multibyte delimiter

Hi, I need to split a string, either using awk or cut or basic unix commands (no programming) , with a multibyte charectar as a delimeter. Ex: abcd-efgh-ijkl split by -efgh- to get two segments abcd & ijkl Is it possible? Thanks A.H.S (1 Reply)
Discussion started by: azmathshaikh
1 Replies
Login or Register to Ask a Question
QXmlAttributes(3qt)													       QXmlAttributes(3qt)

NAME
QXmlAttributes - XML attributes SYNOPSIS
All the functions in this class are reentrant when Qt is built with thread support.</p> #include <qxml.h> Public Members QXmlAttributes () virtual ~QXmlAttributes () int index ( const QString & qName ) const int index ( const QString & uri, const QString & localPart ) const int length () const int count () const QString localName ( int index ) const QString qName ( int index ) const QString uri ( int index ) const QString type ( int index ) const QString type ( const QString & qName ) const QString type ( const QString & uri, const QString & localName ) const QString value ( int index ) const QString value ( const QString & qName ) const QString value ( const QString & uri, const QString & localName ) const void clear () void append ( const QString & qName, const QString & uri, const QString & localPart, const QString & value ) DESCRIPTION
The QXmlAttributes class provides XML attributes. If attributes are reported by QXmlContentHandler::startElement() this class is used to pass the attribute values. Use index() to locate the position of an attribute in the list, count() to retrieve the number of attributes, and clear() to remove the attributes. New attributes can be added with append(). Use type() to get an attribute's type and value() to get its value. The attribute's name is available from localName() or qName(), and its namespace URI from uri(). See also XML. MEMBER FUNCTION DOCUMENTATION
QXmlAttributes::QXmlAttributes () Constructs an empty attribute list. QXmlAttributes::~QXmlAttributes () [virtual] Destroys the attributes object. void QXmlAttributes::append ( const QString & qName, const QString & uri, const QString & localPart, const QString & value ) Appends a new attribute entry to the list of attributes. The qualified name of the attribute is qName, the namespace URI is uri and the local name is localPart. The value of the attribute is value. See also qName(), uri(), localName(), and value(). void QXmlAttributes::clear () Clears the list of attributes. See also append(). int QXmlAttributes::count () const Returns the number of attributes in the list. This function is equivalent to length(). int QXmlAttributes::index ( const QString & qName ) const Looks up the index of an attribute by the qualified name qName. Returns the index of the attribute or -1 if it wasn't found. See also the namespace description. int QXmlAttributes::index ( const QString & uri, const QString & localPart ) const This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Looks up the index of an attribute by a namespace name. uri specifies the namespace URI, or an empty string if the name has no namespace URI. localPart specifies the attribute's local name. Returns the index of the attribute, or -1 if it wasn't found. See also the namespace description. int QXmlAttributes::length () const Returns the number of attributes in the list. See also count(). Example: xml/tagreader-with-features/structureparser.cpp. QString QXmlAttributes::localName ( int index ) const Looks up an attribute's local name for the attribute at position index. If no namespace processing is done, the local name is QString::null. See also the namespace description. QString QXmlAttributes::qName ( int index ) const Looks up an attribute's XML 1.0 qualified name for the attribute at position index. See also the namespace description. Example: xml/tagreader-with-features/structureparser.cpp. QString QXmlAttributes::type ( int index ) const Looks up an attribute's type for the attribute at position index. Currently only "CDATA" is returned. QString QXmlAttributes::type ( const QString & qName ) const This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Looks up an attribute's type for the qualified name qName. Currently only "CDATA" is returned. QString QXmlAttributes::type ( const QString & uri, const QString & localName ) const This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Looks up an attribute's type by namespace name. uri specifies the namespace URI and localName specifies the local name. If the name has no namespace URI, use an empty string for uri. Currently only "CDATA" is returned. QString QXmlAttributes::uri ( int index ) const Looks up an attribute's namespace URI for the attribute at position index. If no namespace processing is done or if the attribute has no namespace, the namespace URI is QString::null. See also the namespace description. Example: xml/tagreader-with-features/structureparser.cpp. QString QXmlAttributes::value ( int index ) const Looks up an attribute's value for the attribute at position index. QString QXmlAttributes::value ( const QString & qName ) const This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Looks up an attribute's value for the qualified name qName. See also the namespace description. QString QXmlAttributes::value ( const QString & uri, const QString & localName ) const This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Looks up an attribute's value by namespace name. uri specifies the namespace URI, or an empty string if the name has no namespace URI. localName specifies the attribute's local name. See also the namespace description. SEE ALSO
http://doc.trolltech.com/qxmlattributes.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qxmlattributes.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QXmlAttributes(3qt)