Extracting trimmed digit sequences between pipes

Learn how to extract all digit sequences between a pair of pipe symbols even if the matches are consecutive. REGEX FIDDLE: FURTHER LINKS: - Regular expression, match substring between pipes: - Lookarounds: - Shorthand character classes: - Special characters: - \K operator: - [JAVA] Extract digits in between two pipes padded with whitespace:
Back to Top