1. I have a field A of the form Date(yyyy-mm-dd)
2. When an issue is created, copy field A value in YYYY-MM format
3. Enter in text field B, in YYYY-MM format
Is it possible?
Ex)
A(DATE Field) : 2023-05-30 ==== when create issue ====> B(text field):2023-05
Hi, @ChangSoo Yoon
Yes, it's possible. You'll need to use regexp. Something like this:
{{issue.description.replaceAll("(\d{4})\/(\d{1,2})\/(\d{1,2})", "$3/$2/$1")}}
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.