Difference between revisions of "Documentation/DevGuide/Spreadsheets/Search and Replace"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (Robot: Changing Category:Documentation/Developers Guide/Spreadsheet Documents)
m (FINAL VERSION FOR L10N)
Line 6: Line 6:
 
|NextPage=Documentation/DevGuide/Spreadsheets/Sorting
 
|NextPage=Documentation/DevGuide/Spreadsheets/Sorting
 
}}
 
}}
{{DISPLAYTITLE:Search and Replace}}
+
{{Documentation/DevGuideLanguages|Documentation/DevGuide/Spreadsheets/{{SUBPAGENAME}}}}
 +
{{DISPLAYTITLE:Search and Replace}}
 
<!--<idltopic>com.sun.star.util.XReplaceable</idltopic>-->
 
<!--<idltopic>com.sun.star.util.XReplaceable</idltopic>-->
 
The cell range interface <idl>com.sun.star.util.XReplaceable</idl> is derived from <idl>com.sun.star.util.XSearchable</idl> providing search and replacement of text.
 
The cell range interface <idl>com.sun.star.util.XReplaceable</idl> is derived from <idl>com.sun.star.util.XSearchable</idl> providing search and replacement of text.

Revision as of 10:28, 14 May 2009



The cell range interface com.sun.star.util.XReplaceable is derived from com.sun.star.util.XSearchable providing search and replacement of text.

  • The method createReplaceDescriptor() creates a new descriptor that contains all data for the replace action. It returns the interface com.sun.star.util.XReplaceDescriptor of this descriptor.
  • The method replaceAll() performs a replacement in all cells according to the passed replace descriptor.

The following example replaces all occurrences of "cell" with "text":

 // --- Replace text in all cells. ---
 com.sun.star.util.XReplaceable xReplace = (com.sun.star.util.XReplaceable)
     UnoRuntime.queryInterface(com.sun.star.util.XReplaceable.class, xCellRange);
 com.sun.star.util.XReplaceDescriptor xReplaceDesc = xReplace.createReplaceDescriptor();
 xReplaceDesc.setSearchString("cell");
 xReplaceDesc.setReplaceString("text");
 // property SearchWords searches for whole cells!
 xReplaceDesc.setPropertyValue("SearchWords", new Boolean(false));
 int nCount = xReplace.replaceAll(xReplaceDesc);
 System.out.println("Search text replaced " + nCount + " times.");  

Template:Documentation/Note

Content on this page is licensed under the Public Documentation License (PDL).
Personal tools
In other languages