Hi,

even in a mailing list it would be polite to see a kind of
salutation and your real name.

On 07.03.2011 12:17, gymka wrote:
> how in libreoffice writer replace text:
> /22./
> to
> /022./
> ??? regular expressions not working(or i don't know how to use them) in 
> replace input. eg. i write "find: [:digit:][:digit:]. and replace with 
> 0[:digit:][:digit:]." and result is "0[:digit:][:digit:]." and i want to 
> get result like: "022."

If you want to do just that replacement you don't need regular
expression, just replace /22./ by /022./

If you want to replace any digit try
/[:digit:]{2}./ by /0&/
"&" is a placeholder that stands for the search result, as explained
in the LO help for regular expressions.

Karl-Heinz


-- 
Unsubscribe instructions: E-mail to users+h...@libreoffice.org
List archive: http://listarchives.libreoffice.org/www/users/
*** All posts to this list are publicly archived for eternity ***

Reply via email to