Search found 10 matches

by Beam4711
Thu May 12, 2005 10:52 am
Forum: General
Topic: Search several Strings in Delphi Source with Regular Express
Replies: 2
Views: 180

Thx - i will try this
by Beam4711
Thu May 12, 2005 10:13 am
Forum: General
Topic: Search several Strings in Delphi Source with Regular Express
Replies: 2
Views: 180

Search several Strings in Delphi Source with Regular Express

Hi there,

I´ve got a Delphi source with about 10.000 Lines. I need to detect all Items with the expression cLoadStr(*****) where * can be any number and cut oder copy them into another TXT-File.

Can anybody tell me which “Regular Expression� I should use?

Thx for any help - Beam
by Beam4711
Fri Feb 04, 2005 1:33 pm
Forum: General
Topic: Change first letter of a word to uppercase?
Replies: 5
Views: 351

Great help – Great Tool.

I ´ve changed about 17.000 Items in a few seconds. You saved me weekend – Thanks!

- Beam
by Beam4711
Fri Feb 04, 2005 10:53 am
Forum: General
Topic: Change first letter of a word to uppercase?
Replies: 5
Views: 351

Sorry – one more: After changing the first letters of the Words into Uppercase – I’ve got the next question. The Change produces a line (in German) like: Er-[Linebreak] Folgt Now i need to find these occurrences an change it into Er-[Linebreak] f olgt Which means that the first l ...
by Beam4711
Fri Feb 04, 2005 9:56 am
Forum: General
Topic: Change first letter of a word to uppercase?
Replies: 5
Views: 351

Thats it Thanks for your help

-Beam
by Beam4711
Fri Feb 04, 2005 9:22 am
Forum: General
Topic: Change first letter of a word to uppercase?
Replies: 5
Views: 351

Change first letter of a word to uppercase?

Hi there,

newbee question – sorry !

How can i search all words in a plaintext which begin with an letter in lowercase an change this first letter to uppercase. For example find in the text “house� and change it to “House�?

Thx for any help
by Beam4711
Mon Sep 08, 2003 2:35 pm
Forum: General
Topic: Search and Replace with Regular Expressions
Replies: 8
Views: 707

:)
Great !! It works. Thanks for any help !!
by Beam4711
Mon Sep 08, 2003 2:09 pm
Forum: General
Topic: Search and Replace with Regular Expressions
Replies: 8
Views: 707

Sorry, this is not a joke. I´ve got a list of words. Some of them are put together like TrainStation, but this should be two different words. The words will be identified with the combination of Uppercase after Lowercase . This works well with the search for [a-z][A-Z] . For these words I´ll need ...
by Beam4711
Mon Sep 08, 2003 12:31 pm
Forum: General
Topic: Search and Replace with Regular Expressions
Replies: 8
Views: 707

Thanks for answer. Your example woks with the word TextPad.

I need to use it with any words in a list of about 300 000 Words.

So I search for [a-z][A-Z] and then tried to replace with [a-z]\n[A-Z], but this doesn’t work ??
:?:
by Beam4711
Mon Sep 08, 2003 9:09 am
Forum: General
Topic: Search and Replace with Regular Expressions
Replies: 8
Views: 707

Search and Replace with Regular Expressions

I want to search a Textfile for all words for example

TextPad

and want to break it like

Text
Pad


I think i can do this with search an replace with Regular Expressions, but how cai i do this exactly ??