Topic: How to search all words in UPPER/LOWER Case (1 of 3), Read 17 times
Conf: VEDIT Macro Library
From: Alejandro isip
Date: Sunday, March 30, 2008 02:20 PM

Hi everyone,

I'm a newbie on vedit and creating a simple macro. Is it possible to search for words that are in capital letters? or that are in small letter? If it is, please let me know how. I'm having some hard time on this.

Thanks in advance for your help.

 


Topic: How to search all words in UPPER/LOWER Case (2 of 3), Read 15 times
Conf: VEDIT Macro Library
From: Ian Binnie
Date: Sunday, March 30, 2008 07:02 PM

On 3/30/2008 2:20:52 PM, Alejandro isip wrote:
>Hi everyone,
>
>I'm a newbie on vedit and
>creating a simple macro. Is it
>possible to search for words
>that are in capital letters?
>or that are in small letter?
>If it is, please let me know
>how. I'm having some hard time
>on this.
>
>Thanks in advance for your
>help.

If you want to search for specific words you can use:-
Search("ss",CASE) Perform a case sensitive search; otherwise, the search is case insensitive.

If you want to find any words in capitals this can be done with Regular expressions. These can be a bit tricky, but the help gives some explanations.

 


Topic: Re: How to search all words in UPPER/LOWER Case (3 of 3), Read 15 times
Conf: VEDIT Macro Library
From: Christian Ziemski
Date: Monday, March 31, 2008 03:10 AM

On 30.03.2008 20:21 vedit-macros Listmanager wrote:
> From: "Alejandro isip"
>
> Hi everyone,
>
> I'm a newbie on vedit and creating a simple macro.
>
>Is it possible to search for words that are in capital letters?

Ian already mentioned "regular expressions".


Here is an example for searching capitalized words:

Search("[A-Z]+\b", REGEXP)


Christian