Simple scripted validator for summary

Tim Perrault
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 27, 2017

I have  a scripted validator checking the summary for "we are sorry". I was wondering if there is a way to catch all iterations of this phrase? (i.e. We Are Sorry, WE are SoRRy)

 

Right now I am using this:

! issue.getSummary().contains("we are sorry")

I could keep adding that line with the differences, but I was hoping for something a bit more efficient. Any help would be extremely appreciated.

 

PS. I have very little coding experience, but have been able to create scripts looking at examples. 

2 answers

1 accepted

0 votes
Answer accepted
Thanos Batagiannis [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 28, 2017

Hi Tim,

You can have something like 

! issue.summary.toLowerCase().contains("we are sorry")

Which will actually, just for the comparison, transforms the summary to lower case ... :)

Hope that helps,

Thanos 

0 votes
Tim Perrault
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 28, 2017

Hello Thanos,

 

That worked perfectly! Thank you very much!

 

Tim

Suggest an answer

Log in or Sign up to answer