Altova MapForce 2024 Basic Edition

The text in the Output pane and the XSLT pane can be searched with an extensive range of options and visual aids.

 

You can search for a term in the entire document or within a text selection. To start a search , press Ctrl+F or select the menu command Edit | Find. You can enter a string or use the combo box to select a string from one of the last 10 strings. When you enter or select a string, all matches are highlighted, and the positions of the matches are indicated by orange markers in the scroll bar (see screenshot below). The position of the currently selected match (highlighted in gray) depends on where the cursor was last located.

 

You can see the total number of matches and the index position of the currently selected match. Use the _ic_find_prev (Previous) and _ic_find_next (Next) buttons to switch between the matches.

inc-dlgfind_zoom70

 

Find options

You can specify find criteria with the help of the buttons located under the search field. The list of the available options is given in the table below.

 

Option

Icon

Description

Match case

_ic_find_match_case

Does a case-sensitive search: e.g., Address is not the same as address.

Match whole word

_ic_find_match_word

Only identical words will match.

Use regular expression

_ic_find_regex

If this option is toggled on, the search term will be read as a regular expression. See Regular expressions below.

Find anchor

_ic_find_anchor

The position of an anchor depends on the place where the cursor was last located. Clicking the Previous and Next buttons does not change the position of the anchor.

Find in selection

_ic_find_in_selection

A selection is a marked piece of text. To find a term within a selection, mark a piece of text, press Ctrl+F, make sure the Find in selection button is pressed, and type the term in the search field.

 

Regular expressions

You can use regular expressions to find a text string. To do this, switch on the Use regular expressions option (see table above). Then enter a regular expression in the search field. Clicking _ic_find_regex_builder (Regular Expression Builder) gives you a list of sample regular expressions (see below). The screenshot below shows a regular expression that helps find email addresses.

inc-findregex_zoom70

Regular expression metacharacters

The table below shows metacharacters that you can use to find and replace text. All the metacharacters except for the last two correspond to the menu items in Regular Expression Builder (see above).

 

Menu item

Metacharacters

Description

Any Character

.

Matches any character. This is a placeholder for a single character.

Character in Range

[...]

Matches any characters in this set. For example, [abc] matches any of the characters a, b or c. You can also use ranges: e.g., [a-z] for any lower case character.

Character Not in Range

[^...]

Matches any characters not in this set. For example, [^A-Za-z] matches any character except an alphabetic character.

Beginning of Word

\<

Matches the beginning of a word.

End of Word

\>

Matches the end of a word.

Beginning of Line

^

Matches the beginning of a line unless it is used inside a set (see above).

End of Line

\$

Matches the end of a line. For example, A+\$ matches one or more A's at the end of a line.

Tagged Expression

(abc)

The parentheses mark the start and end of a tagged expression. Tagged expressions may be useful when you need to tag ("remember") a matched region to refer to it later. Up to nine sub-expressions can be tagged and then back-referenced later.

 

For example, (the) \1 matches the string the the. This expression can be explained as follows: Match the string the and remember it as a tagged region; the expression must be followed by a space character and a back-reference to the tagged region matched previously.

0 or More Matches

*

Matches zero or more matches of the preceding expression. For example, Sa*m matches Sm, Sam, Saam, Saaam and so on.

1 or More Matches

+

Matches one or more occurrences of the preceding expression. For example, Sa+m matches Sam, Saam, Saaam and so on.


\

Where n is 1 through 9, n refers to the first through ninth tagged region (see above).


\x

Allows using a character x, which would otherwise have a special meaning. For example, \[ would be interpreted as [ and not as the start of a character set.

 

Find special characters

If the Use regular expressions option is enabled, you can search for any of the following special characters within the text:

 

\t (Tab)

\ (Carriage Return)

\ (New line)

\\ (Backslash)

 

For example, to find a tab character, press Ctrl + F, select the Use regular expressions option, and enter \t in the Find dialog box.

 

© 2017-2023 Altova GmbH