How to count the number of specific characters in a field value?
Al_22614
Altair Community Member
Answers
-
Hi Al,
I would suggest you create a new column, with all of the commas replaced with the empty string, and then create another column that subtracts the length of your new column from the length of your original column.
Does that make sense?
1 -
Hi,
One option is also to replace all characters except commas and then calculate the length, like:
Len(RegexReplace(original_field;"[^,]";""))
-Lasse0 -
Thanks for quick reply... Calculating the length difference after Replace ing "," with "", got my expected results... Many Thanks
0