B2026 053 find unlinked values of selected #795
@@ -2210,6 +2210,10 @@ namespace Volian.Controls.Library
|
|||||||
ss = ' ' + SearchString; //B2026-053 add a space prefix to make the search exact. If search is 5% this makes it excult 25% 55% etc.;
|
ss = ' ' + SearchString; //B2026-053 add a space prefix to make the search exact. If search is 5% this makes it excult 25% 55% etc.;
|
||||||
|
mschill marked this conversation as resolved
Outdated
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
mschill marked this conversation as resolved
Outdated
mschill
commented
With working on technical debt - should avoid concatenating strings & use string interpolation instead. With working on technical debt - should avoid concatenating strings & use string interpolation instead.
|
|||||||
|
ss = ' ' + SearchString + ' '; // Exact match add spaces before and after search string.
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user
With working on technical debt - should avoid concatenating strings & use string interpolation instead.