Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi folks.
I'm trying to verify if a text contais "#<number>." (Hashtag, number and a dot) and this number can be anyone (from 0 to infinity)
Can anyone help me with powerquery formula?
TY!
Solved! Go to Solution.
@Anonymous
1. Create custom function 'fnRegExpExtract':
let fx=(txt as text)=>
Web.Page(
"<script>
var x = '"& txt & "';
var delim = '-';
var pattern= /" & "\#\d*\." & "/gi;
var result=x.match(pattern).join(delim);
document.write(result);
</script>")[Data]{0}[Children]{0}[Children]{1}[Text]{0}
in
fx
2. Add new column by 'Invoke custom function', choose function and column with data or add this code;
Table.AddColumn(prev_step, "fnRegExpExtract", each try fnRegExpExtract([column_with_data]) otherwise null)
@Anonymous
1. Create custom function 'fnRegExpExtract':
let fx=(txt as text)=>
Web.Page(
"<script>
var x = '"& txt & "';
var delim = '-';
var pattern= /" & "\#\d*\." & "/gi;
var result=x.match(pattern).join(delim);
document.write(result);
</script>")[Data]{0}[Children]{0}[Children]{1}[Text]{0}
in
fx
2. Add new column by 'Invoke custom function', choose function and column with data or add this code;
Table.AddColumn(prev_step, "fnRegExpExtract", each try fnRegExpExtract([column_with_data]) otherwise null)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 36 | |
| 33 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |