SQL Server 2025 introduces REGEXP_LIKE, REGEXP_REPLACE, and REGEXP_SUBSTR to T-SQL. These work out-of-the-box with AnalyticsCreator, enabling regex-based cleansing, validation, and parsing in your transformations—no manual integration required.
REGEXP_LIKE: Tests if a pattern matches (boolean)REGEXP_REPLACE: Replaces pattern matches in stringsREGEXP_SUBSTR: Extracts matched substringsSupported flags include: i (ignore case), m (multi-line), s (dot matches newline), and c (case-sensitive by default).
Regex is now natively available in SQL Server 2025 and Azure SQL. AnalyticsCreator users can define regex logic in calculated columns or transformation steps—AnalyticsCreator compiles it to native T-SQL, no special configuration required.
REGEXP_REPLACE([T1].[ProductNumber], '-', '')
This removes dashes from product numbers in a transformation view. Simply enter this in the Statement field of a calculated column in AnalyticsCreator.
LIKE alternativesNative regex support in SQL Server 2025 empowers AnalyticsCreator users to enrich data quality, enforce patterns, and simplify cleansing—directly in the transformation layer. No external tools or scripts needed. Just metadata-driven modeling, compiled for performance.