Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
We have input data for
Col1 COL2 COL3 COL4 col5
ABHS-SMH-4OZ-01 EA CS 12 1
ABHK-SMH-01 EA CS 24 1
Expected data after transformation :
Col1 COL2 COL3 COL4 col5
ABHS-SMH-4OZ-12 EA CS 12 1
ABHK-SMH-24 EA CS 24 1
We have input data for
Col1 COL2 COL3 COL4 col5
ABHS-SMH-4OZ-01 EA CS 12 1
ABHK-SMH-01 EA CS 24 1
Expected data after transformation :
Col1 COL2 COL3 COL4 col5
ABHS-SMH-4OZ-12 EA CS 12 1
ABHK-SMH-24 EA CS 24 1
I want to search for something
e.g. "ABHS-SMH-4OZ-01"
search for "-01"
return "ABHS-SMH-4OZ-24"
This is my regex so far"ABHS-SMH-4OZ-01".matches(".-01.");