remove strings of lowercase characters (with minimum length requirement)


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting remove strings of lowercase characters (with minimum length requirement)
# 1  
Old 02-19-2009
remove strings of lowercase characters (with minimum length requirement)

Hi all,
I want to delete all lowercase characters from my file, but only strings of length 7 and more.
For example, how can I go from:

JHGEFigeIGDUIirfyfiyhgfoiyfKJHGuioyrDHG

To:

JHGEFigeIGDUIKJHGuioyrDHG

There should be a trick to add to sed 's/[a-z]//g', but I can't figure it out.
Thanks!
# 2  
Old 02-19-2009
Start with this:
Code:
sed 's/[a-z]\{7,\}//g'

{7,} means the character class recurs 7 or more times
# 3  
Old 02-19-2009
awesome! thanks a lot!
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Filter all the lines with minimum specified length of words of a text file

Hi Can someone tell me which script will work best (in terms of speed and simplicity to write and run) for a large text file to filter all the lines with a minimum specified length of words ? A sample script with be definitely of great help !!! Thanks in advance. :) (4 Replies)
Discussion started by: my_Perl
4 Replies

2. Shell Programming and Scripting

Remove characters from fixed length file

Hello I've question on the requirement I am working on. We are getting a fixed length file with "33" characters long. We are processing that file loading into DB. Now some times we are getting a file with "35" characters long. In this case I have to remove two characters (in 22,23... (14 Replies)
Discussion started by: manasvi24
14 Replies

3. Shell Programming and Scripting

Read file and remove special characters or strings

Hello all I am getting data like col1 | col2 | col3 asdafa | asdfasfa | asf*&^sgê 345./ |sdfasd23425^%^&^ | sdfsa23 êsfsfd | sf(* | sdfsasf My requirement is like I have to to read the file and remove all special characters and hex characters ranging form 00-1f from 1st column, remove %"'... (1 Reply)
Discussion started by: vasuarjula
1 Replies

4. Shell Programming and Scripting

sed: remove characters between and including 2 strings

I have the following line: 4/23/2010 0:00:38.000: Copying $$3MSYDDC02$I would like to use sed (or similiar) to remove everthing between and including $ that appears in the line so it ends up like this. 4/23/2010 0:00:38.000: Copying 3MSYDDC02I have been trying these but i'm really just... (5 Replies)
Discussion started by: jelloir
5 Replies

5. HP-UX

minimum hardware requirement for HPUX 11i V3

I am new for HPUX OS and want to pursue my career in HPUX Administration. I could not able to get following information from HP.com site, that why I need an assistance to know that - can I install HPUX 11i V3 OS on old HP B2000 & B1000 workstations (these workstation are 4 to 5 year old) or not,... (5 Replies)
Discussion started by: girish.batra
5 Replies

6. AIX

Minimum System Requirement

HI all, What the minimum & recommended system requirement for IBM AIX to get install on it?? Plz Reply ASAP. (3 Replies)
Discussion started by: saurabh84g
3 Replies

7. HP-UX

Minimum Sys Requirement

HI all, What the minimum & recommended system requirement for Rhel Linux to get install on it??:( Plz reply ASAp (0 Replies)
Discussion started by: saurabh84g
0 Replies

8. Solaris

Solaris 10 Minimum Sys Requirement

HI all, What the minimum & recommended system requirement for Rhel Linux to get install on it??:( Plz reply ASAp (0 Replies)
Discussion started by: saurabh84g
0 Replies

9. HP-UX

minimum password length

Dear frnds, how i can make the password 5chs minimum length in hp-ux 11i ? pls help regards (3 Replies)
Discussion started by: jestinabel
3 Replies
Login or Register to Ask a Question