How to seperate time and text with an hyphen
-
I am-trying to use rejex to insert hyphen between time value and text
Ex: 12:34xxxx to 12:34 - xxxx.
Using the Rejex option,. I entered \d{0,2}:\d{2} in the find line, and all positions are detected in many lines.
In the replace line I an supposed to use the group ( \d{0,2}:\d{2}) and to add an hyphen . What is the way to do it?
Thanks
Dov -
-
@Claudia-Frank said:
@Dov-Kruman said:
\d{0,2}:\d{2}
I guess you want
$0 -
Cheers
Claudia@Claudia-Frank said:
@Dov-Kruman said:
\d{0,2}:\d{2}
I guess you want
$0 -
Cheers
ClaudiaThank you Claudia
That is exactly what I was looking for
Happy new year
Dov