I want to replace the numbers in the string with _number.We have to fetch the numbers only that dont begin with a character and replace them with a underscore .
Requirement : I have a string, so while processing I want to replace constants with _Constant.
example string :”(a/(b1/8))*100″
output expected :”(a/(b1/_8))*_100″
Please suggest how to do this in asp.net code behind.
Thanks in advance.
Same as cwallenpoole’s, just in C# code behind
Updated: