문제

I have this format mm/dd/yyyy. and I need this format dd/mm/yyyy. I tried with this

(\d{1,2})/(\d{1,2})/(\d{4})

Change with:

$2/$1/$3

I use Yahoo pipes with the Regex Module, but don't work.

도움이 되었습니까?

해결책

Use: /(\d{1,2})\/(\d{1,2})\/(\d{4})/ as regex. And use "$2/$1/$3" as replacing string .

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top