Sample Regular Expressions: Difference between revisions

From Simple Wiki
(Created page with "==== Sample 1 ==== If you want to read every character after a certain tag or combination of tags until a line feed. Scenario: Read everything after "Job: or Job # or Job" Re...")
 
No edit summary
Line 1: Line 1:
You can find different sample Regular Expressions that can be used in the SimpleIndex template for matching below.
==== Sample 1 ====
==== Sample 1 ====
If you want to read every character after a certain tag or combination of tags until a line feed.
If you want to read every character after a certain tag or combination of tags until a line feed.

Revision as of 16:09, 13 April 2023

You can find different sample Regular Expressions that can be used in the SimpleIndex template for matching below.

Sample 1[edit | edit source]

If you want to read every character after a certain tag or combination of tags until a line feed. Scenario: Read everything after "Job: or Job # or Job" RegEx: (?<=(Job:|Job #|Job)).+

Sample 2[edit | edit source]

If you want to read every character after a certain tag or combination of tags until it reads another tag. Scenario: Read everything after "Job: or Job # or Job" until "Ticket #" RegEx: (?<=(Job:|Job #|Job)).+(?=Ticket #)