Meta charcters


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Meta charcters
# 1  
Old 11-16-2012
Meta charcters

Find out lines in a given file consisting of the following pattern BCAA, BCAAA, BCAAAA, BCAAAAA, BCAAAAAA

Last edited by Scott; 11-16-2012 at 07:53 PM.. Reason: Homework. Closed.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Homework & Coursework Questions

Meta charcters

find out lines in a given file consisting of the following pattern BCAA, BCAAA, BCAAAA, BCAAAAA, BCAAAAAA (1 Reply)
Discussion started by: Phaneendra G
1 Replies

2. UNIX for Advanced & Expert Users

Substitution when special charcters involved

I am trying to substitute a substring in a file and am having difficulty due to the presence of 'special characters' I tried sed -e "s/Bob's birthday 13/11/08 (today)/Bob's birthday 14/11/08 (tomorrow)/" file1 This does not action any change due to the square brackets. How can I cater... (5 Replies)
Discussion started by: SAMZ
5 Replies

3. Shell Programming and Scripting

cat in linux, file holding special charcters

Hi I'd like to cat, in linux, a file that holds special charcters, like "-->" and ">" and "]" For example I have a file named test123.txt it looks like this: 2008-09-11 00:27:01,496 - < 0 > --> Start calculation of pattern , Pattern was split to pattern graphs < 0 > System Tqls Optimizer... (5 Replies)
Discussion started by: liav
5 Replies

4. Solaris

What is Meta Database ?

Hi Guys, what is a meta file system ? what is it use for? What is /etc/vfstab? What is the relationship between the "vfstab file and meta file system. (3 Replies)
Discussion started by: tlee
3 Replies

5. Solaris

What is Meta Database ?

Hi Guys, what is a meta file system ? what is it use for? What is /etc/vfstab? What is the relationship between the "vfstab file and meta file system. thanks (1 Reply)
Discussion started by: tlee
1 Replies

6. UNIX for Advanced & Expert Users

Line Longer Than 2048 Charcters

I have a csv file with a record size of greater than 2048.So when i try to open the file in VI..This is the error i get (test.csv" A line cannot be longer than 2048 characters) Is there a way i can change this parameter to read a bigger line (2 Replies)
Discussion started by: kris01752
2 Replies

7. UNIX for Advanced & Expert Users

remove charcters

How do i remove single quotes(') from a file. Can we use sed for it (2 Replies)
Discussion started by: kris01752
2 Replies

8. Solaris

Handling Special Charcters

Dear All, I have created a UTF-8 database to store multi-lingual charcters. Below is the query from which i insert from Winsql (front-end third party database browser tool), the data gets inserted properly. insert into a (no, lbl) values (1, "Cliquez ici pour revenir Ã_ la recherche de... (2 Replies)
Discussion started by: lloydnwo
2 Replies
Login or Register to Ask a Question
Mouse::Meta::Class(3pm) 				User Contributed Perl Documentation				   Mouse::Meta::Class(3pm)

NAME
Mouse::Meta::Class - The Mouse class metaclass VERSION
This document describes Mouse version 0.99 DESCRIPTION
This class is a meta object protocol for Mouse classes, which is a subset of Moose::Meta:::Class. METHODS
"initialize(ClassName) -> Mouse::Meta::Class" Finds or creates a "Mouse::Meta::Class" instance for the given ClassName. Only one instance should exist for a given class. "name -> ClassName" Returns the name of the owner class. "superclasses -> ClassNames" "superclass(ClassNames)" Gets (or sets) the list of superclasses of the owner class. "add_method(name => CodeRef)" Adds a method to the owner class. "has_method(name) -> Bool" Returns whether we have a method with the given name. "get_method(name) -> Mouse::Meta::Method | undef" Returns a Mouse::Meta::Method with the given name. Note that you can also use "$metaclass->name->can($name)" for a method body. "get_method_list -> Names" Returns a list of method names which are defined in the local class. If you want a list of all applicable methods for a class, use the "get_all_methods" method. "get_all_methods -> (Mouse::Meta::Method)" Return the list of all Mouse::Meta::Method instances associated with the class and its superclasses. "add_attribute(name => spec | Mouse::Meta::Attribute)" Begins keeping track of the existing Mouse::Meta::Attribute for the owner class. "has_attribute(Name) -> Bool" Returns whether we have a Mouse::Meta::Attribute with the given name. "get_attribute Name -> Mouse::Meta::Attribute | undef" Returns the Mouse::Meta::Attribute with the given name. "get_attribute_list -> Names" Returns a list of attribute names which are defined in the local class. If you want a list of all applicable attributes for a class, use the "get_all_attributes" method. "get_all_attributes -> (Mouse::Meta::Attribute)" Returns the list of all Mouse::Meta::Attribute instances associated with this class and its superclasses. "linearized_isa -> [ClassNames]" Returns the list of classes in method dispatch order, with duplicates removed. "new_object(Parameters) -> Instance" Creates a new instance. "clone_object(Instance, Parameters) -> Instance" Clones the given instance which must be an instance governed by this metaclass. "throw_error(Message, Parameters)" Throws an error with the given message. SEE ALSO
Mouse::Meta::Module Moose::Meta::Class Class::MOP::Class perl v5.14.2 2012-06-30 Mouse::Meta::Class(3pm)