Hi,
I would like to ask if and how i can work with VBA in Excel, when i want replace characters and words like cases bellow.
I were used to use notepad++ for doing this operations, but now i would like to check if Excel will help me too with this cases and how.
Please give me some tips how to do it, or if it is possible at all....
Howerver i did one post here and got answer to add a new post. There were only answer about renaming words that i know forwardly.. But not if i want to replace all [abcdefgh][0123456][0123456]whatever else words with for example [abcdefgh][0123456]0 so as it is described bellow / it is better described.
thank you so much :-)
Example:
In Column A row 1:xxxxx find all words starting
A1253
change to (or make the result in Column B)
A1200
in Notepad++ i were doing this with regular expression mode like this
find what ([ABCDEFGHJKLMNOPQRSTUVWXYZ])([0123456789][0123456789])[0123456789][0123456789]
replace with \1\200
or
A1253-7555 xxx
change to (or make the result in Column B)
A1200
in Notepad++ i were doing this with regular expression mode like this
find what ([ABCDEFGHJKLMNOPQRSTUVWXYZ])([0123456789][0123456789])[0123456789][0123456789](.*)
replace with \1\200
Or
some text 1253-xxx
change to (or make the result in Column B)
some text 1200
in Notepad++ i were doing this with regular expression mode like this
find what (.*)([0123456789][0123456789])[0123456789][0123456789]-(.*)
replace with \1\200
Bookmarks