Sponsored Content
Full Discussion: string management
Top Forums Shell Programming and Scripting string management Post 302269428 by orjnet on Wednesday 17th of December 2008 03:54:13 PM
Old 12-17-2008
string management

I want to prompt for a full name, then select the surname from the full name.
Then address the person as the surname entered in the fullname
 

9 More Discussions You Might Find Interesting

1. What is on Your Mind?

Configuration Management

Not sure where to post this so I placed it here. Anyone have any experience with cccHarvest 5.1 or AllFusion Harvest Change Manager 5.1? I have to put together a plan to move from PVCS to Harvest/AllFusion and I dont know much at all about the latter. Any help, information, or links would be... (3 Replies)
Discussion started by: google
3 Replies

2. Solaris

Disk management

Dear experts, I have a freshly installed solaris 10 64bit os in one hard disk Now i have added another hard disk and managed all settings perfectly in bios mode. Now how can i manage my second hard disk in solaris. because i want to install sap which i have dump in 2nd hard... (1 Reply)
Discussion started by: prathapkutty
1 Replies

3. UNIX and Linux Applications

Password management / centralized password management

Hello all, I need help for build server call as Password management / centralized password management server. My situation and example: I have 600 server in my server room running on Linux then I need 1 server only can create login/password and then user can login to all 600 server no... (2 Replies)
Discussion started by: sheikh76
2 Replies

4. 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

5. IP Networking

IP Management

Hello all, I was wondering which way do you use to manage you IPs? For example in our case we have excel sheets and we export them in html first and import it to a server running apache, so to be visible from all. But i was wondering if there are any way (prefer a way running in web server)... (2 Replies)
Discussion started by: @dagio
2 Replies

6. 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

7. AIX

Help with user management

Hi When i search for a user it shows that the user doesn't exist # lsuser x090817 3004-687 User "x090817" does not exist. But under /var/spool/mail/ the file named x090817 still exists. 4700 1 -rw-rw---- 1 2090817 mail 603 Apr 12 2010 /var/spool/mail/x090817... (1 Reply)
Discussion started by: aixaixaixaix
1 Replies

8. Shell Programming and Scripting

Memory management

Hello all. I have a script that uses two arrays in the beginning. Saves certain values that i am extracting from df -h command. array1 and array2 where i is from 0 to 9. It then goes on and saves the values of the arrays into variables. for i 0 to 9 , tmp= array2 // I am no writing the... (4 Replies)
Discussion started by: Junaid Subhani
4 Replies

9. What is on Your Mind?

Individual Risk Management (Personal IT Security) and Browser Cache Management

Original post from this thread on browser caching. To add to this, it is an effective security measure to clear absolutely all cached data (cookies, web content, ....) when closing the browser - i.e. in case of a shutdown. It takes a bit of work to re-login to all the sites but websites will not... (7 Replies)
Discussion started by: bakunin
7 Replies
User::Identity(3pm)					User Contributed Perl Documentation				       User::Identity(3pm)

NAME
User::Identity - maintains info about a physical person INHERITANCE
User::Identity is a User::Identity::Item SYNOPSIS
use User::Identity; my $me = User::Identity->new ( 'john' , firstname => 'John' , surname => 'Doe' ); print $me->fullName # prints "John Doe" print $me; # same DESCRIPTION
The "User::Identity" object is created to maintain a set of informational objects which are related to one user. The "User::Identity" module tries to be smart providing defaults, conversions and often required combinations. The identities are not implementing any kind of storage, and can therefore be created by any simple or complex Perl program. This way, it is more flexible than an XML file to store the data. For instance, you can decide to store the data with Data::Dumper, Storable, DBI, AddressBook or whatever. Extension to simplify this task are still to be developed. If you need more kinds of user information, then please contact the module author. OVERLOADED
$obj->stringification When an "User::Identity" is used as string, it is automatically translated into the fullName() of the user involved. example: my $me = User::Identity->new(...) print $me; # same as print $me->fullName print "I am $me "; # also stringification METHODS
Constructors User::Identity->new([NAME], OPTIONS) Create a new user identity, which will contain all data related to a single physical human being. Most user data can only be specified at object construction, because they should never change. A NAME may be specified as first argument, but also as option, one way or the other is required. Option --Defined in --Default birth undef charset $ENV{LC_CTYPE} courtesy undef description User::Identity::Item undef firstname undef formal_name undef full_name undef gender undef initials undef language 'en' name User::Identity::Item <required> nickname undef parent User::Identity::Item undef prefix undef surname undef titles undef . birth => DATE . charset => STRING . courtesy => STRING . description => STRING . firstname => STRING . formal_name => STRING . full_name => STRING . gender => STRING . initials => STRING . language => STRING . name => STRING . nickname => STRING . parent => OBJECT . prefix => STRING . surname => STRING . titles => STRING Attributes $obj->age Calcuted from the datge of birth to the current moment, as integer. On the birthday, the number is incremented already. $obj->birth Returns the date in standardized format: YYYYMMDD, easy to sort and select. This may return "undef", even if the dateOfBirth() contains a value, simply because the format is not understood. Month or day may contain '00' to indicate that those values are not known. $obj->charset The user's prefered character set, which defaults to the value of LC_CTYPE environment variable. $obj->courtesy The courtesy is used to address people in a very formal way. Values are like "Mr.", "Mrs.", "Sir", "Frau", "Heer", "de heer", "mevrouw". This often provides a way to find the gender of someone addressed. $obj->dateOfBirth Returns the date of birth, as specified during instantiation. $obj->description See "Attributes" in User::Identity::Item $obj->firstname Returns the first name of the user. If it is not defined explicitly, it is derived from the nickname, and than capitalized if needed. $obj->formalName Returns a formal name for the user. If not defined as instantiation parameter (see new()), it is constructed from other available information, which may result in an incorrect or an incomplete name. The result is built from "courtesy initials prefix surname title". $obj->fullName If this is not specified as value during object construction, it is guessed based on other known values like "firstname prefix surname". If a surname is provided without firstname, the nickname is taken as firstname. When a firstname is provided without surname, the nickname is taken as surname. If both are not provided, then the nickname is used as fullname. $obj->gender Returns the specified gender of the person, as specified during instantiation, which could be like 'Male', 'm', 'homme', 'man'. There is no smart behavior on this: the exact specified value is returned. Methods isMale(), isFemale(), and courtesy() are smart. $obj->initials The initials, which may be derived from the first letters of the firstname. $obj->isFemale See isMale(): return true if we are sure the user is a woman. $obj->isMale Returns true if we are sure that the user is male. This is specified as gender at instantiation, or derived from the courtesy value. Methods isMale and isFemale are not complementatory: they can both return false for the same user, in which case the gender is undertermined. $obj->language Can contain a list or a single language name, as defined by the RFC Examples are 'en', 'en-GB', 'nl-BE'. The default language is 'en' (English). $obj->name([NEWNAME]) See "Attributes" in User::Identity::Item $obj->nickname Returns the user's nickname, which could be used as username, e-mail alias, or such. When no nickname was explicitly specified, the name is used. $obj->prefix The words which are between the firstname (or initials) and the surname. $obj->surname Returns the surname of person, or "undef" if that is not known. $obj->titles The titles, degrees in education or of other kind. If these are complex, you may need to specify the formal name of the users as well, because smart formatting probably failes. Collections $obj->add(COLLECTION, ROLE) See "Collections" in User::Identity::Item $obj->addCollection(OBJECT | ([TYPE], OPTIONS)) See "Collections" in User::Identity::Item $obj->collection(NAME) See "Collections" in User::Identity::Item $obj->find(COLLECTION, ROLE) See "Collections" in User::Identity::Item $obj->parent([PARENT]) See "Collections" in User::Identity::Item $obj->removeCollection(OBJECT|NAME) See "Collections" in User::Identity::Item $obj->type User::Identity->type See "Collections" in User::Identity::Item $obj->user See "Collections" in User::Identity::Item DIAGNOSTICS
Error: $object is not a collection. The first argument is an object, but not of a class which extends User::Identity::Collection. Error: Cannot load collection module for $type ($class). Either the specified $type does not exist, or that module named $class returns compilation errors. If the type as specified in the warning is not the name of a package, you specified a nickname which was not defined. Maybe you forgot the 'require' the package which defines the nickname. Error: Creation of a collection via $class failed. The $class did compile, but it was not possible to create an object of that class using the options you specified. Error: Don't know what type of collection you want to add. If you add a collection, it must either by a collection object or a list of options which can be used to create a collection object. In the latter case, the type of collection must be specified. Warning: No collection $name The collection with $name does not exist and can not be created. SEE ALSO
This module is part of User-Identity distribution version 0.93, built on December 24, 2009. Website: http://perl.overmeer.net/userid/ LICENSE
Copyrights 2003,2004,2007-2009 by Mark Overmeer <perl@overmeer.net>. For other contributors see Changes. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html perl v5.10.1 2009-12-24 User::Identity(3pm)
All times are GMT -4. The time now is 10:33 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy