Hi I want to check an arbitrary number of strings for similarity except for the last 12 characters. Like this
these 2 are considered similar
CXS101289_LL_20_P11_101029080840/
CXS101289_LL_20_P11_101105125656/
and these 2
CXS101289_LLV_IC_10_P163_110121114144/
CXS101289_LLV_IC_10_P163_110124114042/
but these aren't
these 2
CXS101289_LL_20_P11_101029080840/
CXS101289_LL_21_P11_101105125656/
and these 2
CXS101289_LLV_IC_10_P162_110121114144/
CXS101289_LLV_IC_10_P163_110124114042/
So as you can see the string always ends with 12 digits that represents the date. So I want to compare everything in the string uptil the last 12 characters of it, how can I do this in a simple method?
You can assume that I store all strings to compare in an array like this
var allStringsToCompare = ["CXS101289_LLV_IC_10_P162_110121114144","CXS101289_LLV_IC_10_P163_110124114042","CXS101289_LL_21_P11_101105125656"]