473,395 Members | 1,379 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Find and Replace

I am a beginner in the IT field and I have a question.
I would like to have some hints about how to define a procedure for a txt file (in C+, VB.net, DOS or what else) that executes the same function as Standard Microsoft program does when you use the Edit menu and do “Find and Replace”.
Can someone help me to address this issue?
Thanks
Luca
Sep 15 '06 #1
1 1204
PEB
1,418 Expert 1GB
Hi,

So welcome in the IT domain!

You have right that this is good to be stored like a procedure or function!

In VB in the procedures you can store an algoritme but this algoritme don't give result!

The procedures are declared like:

Sub find_replace(Search_string, Replace_String, Match_case, FInd_whole_words_only)

Algoritme

End sub

And there is no result when they are executed!

They are called frome your code like:

find_replace(Search_string, Replace_String, Match_case, FInd_whole_words_only)

In the construction of functions there is result that is returned!

Function find_replace(Search_string, Replace_String, Match_case, FInd_whole_words_only) AS Longint

Algoritme

find_replace=number_of_replacements

Function sub

The function can be called like:


Msgbox "Word has made ;" & str(find_replace(Search_string, Replace_String, Match_case, FInd_whole_words_only)) & " replacements"

Usually the functions and procedures are wrotten in modules. It depend of the destination of the functions and procedures...

When the respective module is loaded in your program you can use the specified function or procedure stored on it...

To facilitate the programers that write on different languages, many of the languages have the option to create a module on the respective language as dll

dinamic linked library!

One time your module in dll, you can use it in other languages to program!

In Windows there is a lot of dll... You need to know what functions and procedures you have and their parameters in the respective dll for use them!

For find and replace as function in windows you need to search in what dll is stored and what are the parameters...

Then in the respective4 language you need to check how to declare a dll function or procedure and it's all!

Best regards!

:)
Sep 24 '06 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

10
by: hokieghal99 | last post by:
import os, string print " " setpath = raw_input("Enter the path: ") def find_replace(setpath): for root, dirs, files in os.walk(setpath): fname = files for fname in files: find =...
7
by: Bart Nessux | last post by:
x = str.find(temp, '120.50') I am looking for '120.50' '120.51' '122.78' etc. How can I do this with just one str.find... I can use re if I must, but I'd like to avoid it if possible.
1
by: Xah Lee | last post by:
suppose you want to do find & replace of string of all files in a directory. here's the code: ©# -*- coding: utf-8 -*- ©# Python © ©import os,sys © ©mydir= '/Users/t/web'
2
by: Daniel | last post by:
I use an Access database to basically take data exports, import them, manipulate the data, and then turn them into exportable reports. I do this using numerous macros, and queries to get the data...
1
by: James Vitale | last post by:
Using vb asp.net 1.1 I'm doing a word automation on a doc file and trying to do a find and replace. My existing code works fine except that it doesn't find and replace in the header. My code...
0
by: Xah Lee | last post by:
Interactive Find and Replace String Patterns on Multiple Files Xah Lee, 2006-06 Suppose you need to do find and replace of a string pattern, for all files in a directory. However, you do not...
0
by: Rave | last post by:
This is a long shot, but I thought I'd try it. I am currently using excel as an inventory tool. I currently have a hand-held scanner plugged into a laptop for reading barcodes. Using the "Find and...
2
by: john | last post by:
In a table I have text field A. I would like to replace all the null values in field A to a real value, let's say 'Test'. When I use Find & Replace and I search for 'is null' and I press replace or...
3
by: TOXiC | last post by:
Hi everyone, First I say that I serched and tryed everything but I cannot figure out how I can do it. I want to open a a file (not necessary a txt) and find and replace a string. I can do it...
3
by: mouac01 | last post by:
Newbie here. How do I do a find and replace in a binary file? I need to read in a binary file then replace a string "ABC" with another string "XYZ" then write to a new file. Find string is the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.