Sponsored Content
Full Discussion: regular expressions
Top Forums Shell Programming and Scripting regular expressions Post 302079730 by jack1981 on Wednesday 12th of July 2006 02:35:50 PM
Old 07-12-2006
regular expressions

Hi,

can anyone advise me how to shorten this:


if [ "$A" = "y" ] || [ "$A" = "Y" ] ; then

I tried [yY] but it dosent seem to work, whats the correct way.

Cheers
 

10 More Discussions You Might Find Interesting

1. Programming

regular expressions in c++

How do I use the regular expressions in c++? (2 Replies)
Discussion started by: szzz
2 Replies

2. Shell Programming and Scripting

Help with regular expressions

I have following content in the file CancelPolicyMultiLingual3=U|PC3|EN RestaurantInfoCode1=U|restID1|1 ..... I am trying to use following matching extression \|(+) to get this PC3|EN restID1|1 Obviously it does not work. Any ideas? (13 Replies)
Discussion started by: arushunter
13 Replies

3. UNIX for Dummies Questions & Answers

regular expressions

Hi Gurus, I need help with regular expressions. I want to create a regular expression which will take only alpha-numeric characters for 7 characters long and will throw out an error if longer than that. i tried various combinations but couldn't get it, please help me how to get it guys. ... (2 Replies)
Discussion started by: ragha81
2 Replies

4. Shell Programming and Scripting

regular expressions

Hello, Let say I have a string with content "Free 100%". How can extract only "100" using ksh? I would this machanism to work if instead of "100" there is any kind of combination of numbers(ex. "32", "1238", "1"). I want to get only the digits. I have written something like this: ... (4 Replies)
Discussion started by: whatever
4 Replies

5. UNIX for Advanced & Expert Users

Regular Expressions

Hi, below is a piece of code written by my predecessor at work. I'm kind of a newbie and am trying to figure out all the regular expressions in this piece of code. It is really a tough time for me to figure out all the regular expressions. Please shed some light on the regular expressions... (3 Replies)
Discussion started by: ramky79
3 Replies

6. UNIX for Dummies Questions & Answers

Regular expressions

In regular expressions with grep(or egrep), ^ works if we want something in starting of line..but what if we write ^^^ or ^ for pattern matching??..Hope u all r familiar with regular expressions for pattern matching.. (1 Reply)
Discussion started by: aadi_uni
1 Replies

7. Shell Programming and Scripting

Regular Expressions

#!/usr/bin/perl $word = "one last challenge"; if ( $word =~ /^(\w+).*\s(\w+)$/ ) { print "$1"; print "\n"; print "$2"; } The output shows that "$1" is with result one and "$2" is with result challenge. I am confused about how this pattern match expression works step by step. I... (8 Replies)
Discussion started by: DavidHe
8 Replies

8. Shell Programming and Scripting

Help with regular expressions

I have a file that I'm trying to find all the cases of phone number extensions and deleting them. So input file looks like: abc x93825 def 13234 x52673 hello output looks like: abc def 13234 hello Basically delete lines that have 5 numbers following "x". I tried: x\(4) but it... (7 Replies)
Discussion started by: pxalpine
7 Replies

9. Shell Programming and Scripting

Regular Expressions

I am new to shell scripts.Can u please help me on this req. test_user = "Arun" if echo "test_user is a word" else echo "test_user is not a word" (1 Reply)
Discussion started by: chandrababu
1 Replies

10. Shell Programming and Scripting

Regular expressions

I need to pick a part of string lets stay started with specific character and end with specific character to replace using sed command the line is like this:my audio book 71-skhdfon1dufgjhgf8.wav' I want to move the characters beginning with - end before. I have different files with random... (2 Replies)
Discussion started by: XP_2600
2 Replies
QSignal(3qt)															      QSignal(3qt)

NAME
QSignal - Can be used to send signals for classes that don't inherit QObject SYNOPSIS
#include <qsignal.h> Inherits QObject. Public Members QSignal ( QObject * parent = 0, const char * name = 0 ) ~QSignal () bool connect ( const QObject * receiver, const char * member ) bool disconnect ( const QObject * receiver, const char * member = 0 ) void activate () bool isBlocked () const (obsolete) void block ( bool b ) (obsolete) void setParameter ( int value ) (obsolete) int parameter () const (obsolete) void setValue ( const QVariant & value ) QVariant value () const DESCRIPTION
The QSignal class can be used to send signals for classes that don't inherit QObject. If you want to send signals from a class that does not inherit QObject, you can create an internal QSignal object to emit the signal. You must also provide a function that connects the signal to an outside object slot. This is how we have implemented signals in the QMenuData class, which is not a QObject. In general, we recommend inheriting QObject instead. QObject provides much more functionality. You can set a single QVariant parameter for the signal with setValue(). Note that QObject is a private base class of QSignal, i.e. you cannot call any QObject member functions from a QSignal object. Example: #include <qsignal.h> class MyClass { public: MyClass(); ~MyClass(); void doSomething(); void connect( QObject *receiver, const char *member ); private: QSignal *sig; }; MyClass::MyClass() { sig = new QSignal; } MyClass::~MyClass() { delete sig; } void MyClass::doSomething() { // ... does something sig->activate(); // emits the signal } void MyClass::connect( QObject *receiver, const char *member ) { sig->connect( receiver, member ); } See also Input/Output and Networking and Miscellaneous Classes. MEMBER FUNCTION DOCUMENTATION
QSignal::QSignal ( QObject * parent = 0, const char * name = 0 ) Constructs a signal object called name, with the parent object parent. These arguments are passed directly to QObject. QSignal::~QSignal () Destroys the signal. All connections are removed, as is the case with all QObjects. void QSignal::activate () Emits the signal. If the platform supports QVariant and a parameter has been set with setValue(), this value is passed in the signal. void QSignal::block ( bool b ) This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. Blocks the signal if b is TRUE, or unblocks the signal if b is FALSE. An activated signal disappears into hyperspace if it is blocked. See also isBlocked(), activate(), and QObject::blockSignals(). bool QSignal::connect ( const QObject * receiver, const char * member ) Connects the signal to member in object receiver. See also disconnect() and QObject::connect(). bool QSignal::disconnect ( const QObject * receiver, const char * member = 0 ) Disonnects the signal from member in object receiver. See also connect() and QObject::disconnect(). bool QSignal::isBlocked () const This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. Returns TRUE if the signal is blocked, or FALSE if it is not blocked. The signal is not blocked by default. See also block() and QObject::signalsBlocked(). int QSignal::parameter () const This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. void QSignal::setParameter ( int value ) This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. void QSignal::setValue ( const QVariant & value ) Sets the signal's parameter to value QVariant QSignal::value () const Returns the signal's parameter SEE ALSO
http://doc.trolltech.com/qsignal.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 (qsignal.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QSignal(3qt)
All times are GMT -4. The time now is 11:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy