I am looking for a wild card character which could be used to trim or replace a matching string in KUSTO.
A simple example:
let string_to_trim = @"https://bing.com"; let substring = ".com"; // ---> Need a wildcard to use like let substring = ".{wildcard char}";
print string_to_trim = string_to_trim, trimmed_string = trim(substring,string_to_trim)
Result: https://bing