問題タブ [appinsights]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
azure-data-explorer - トリムまたは置換する KUSTO WILDCARD 文字
KUSTO で一致する文字列をトリミングまたは置換するために使用できるワイルド カード文字を探しています。
簡単な例:
let string_to_trim = @"https://bing.com"; let substring = ".com"; // ---> let substring = ".{wildcard char}"; のようにワイルドカードを使用する必要があります。
print string_to_trim = string_to_trim, trimmed_string = trim(substring,string_to_trim)
結果: https://bing