These examples can be applied both on the article numbers as on the nodes:
no |
entry |
data |
result |
1 |
*ABC |
abcd |
abcdABC |
2 |
ABC* |
abcd |
ABCabcd |
3 |
ABC*DEF |
abcd |
ABCabcdDEF |
Example 1:
Your entry *ABC will be added at the end of the data. Please note the position of the wildcard character (asterix).
Example 2:
Your entry ABC* will be added at the start of the data. Please note the position of the wildcard character (asterix).
Example 3:
Your entry ABC*DEF will be added with the part left from the asterisk to the start of the data and with the part right from the asterisk to the end of the data. Please note the position of the wildcard character (asterix).
Please note: It makes no sense to use several pattern in one pass.