dave-csc opened a new issue, #4585:
URL: https://github.com/apache/hop/issues/4585
### Apache Hop version?
2.10.0
### Java version?
17.0.2
### Operating system
Linux
### What happened?
The **Regex evaluation** transform seems to evaluate correctly a regular
expression only if this matches the entire input field, and not part of it.
Example 1:
- Input field: `THIS IS A TITLE <PROCESSING_TAG>`
- Regex 1: `.*<(.*)>` -> returns correctly a match for the whole string and
the group `PROCESSING_TAG`
- Regex 2: `<(.*)>` -> returns no match, should instead match the string
`<PROCESSING_TAG>` and the group `PROCESSING_TAG`
Example 2:
- Input field: `RSSMRA70A01H501X`
- Regex 1: `[A-Z]{6}.*` -> return correctly a match for the whole string
- Regex 2: `[A-Z]{6}` -> returns no match, should instead match the first 6
letters `RSSMRA`
### Issue Priority
Priority: 3
### Issue Component
Component: Transforms
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]