将 unicode 数字从英语转换为梵文
我一直在寻找一些正则表达式或任何其他方法将数字 0-9 转换为०-९(梵文脚本)。我正在使用 asp.net,但在全球化命名空间中找不到执行此操作的任何方法。
非常感谢任何帮助。
I was looking for some RegEx or any other method to convert digits 0-9 into ०-९ (devanagari script). I am using asp.net but could not find any method in globalization namespace which does this.
Any help is greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在此处找到了类似的帖子!
我的解决方案有点不同,因为我了解来源和目的地文化。所以我可以对数字数组进行硬编码。
另一个变化是我正在迭代年份数字而不是 devD 数组。节省很少的迭代次数,因为大多数数字都小于 10 位数字。就我而言,只有四位数。
希望对那些陷入类似困境的人有用。
Found similar post here!
My solution is bit different though as I know the source and destination culture. So I can hard-code the digits array.
Another change is that I am iterating through the year digits instead of devD array. Saves few iterations as most numbers will be less than 10 digit. In my case, only four digits.
Hopefully will be useful for someone stuck up on similar lines.
每个拉丁数字 0..9 是否准确映射到 devanagari 数字(我确实这么认为,如果我正确理解维基百科)=
如果是,那么以下怎么样:
为了优化,您可以在调用
string.Replace
之前检查string.IsNullOrEmpty()
功能。另外(如果这适合梵文数字),请调用
字符串.Replace()
函数重载,将char
作为参数而不是string
。Does each latin digit 0..9 map to exactly a devanagari digit (I do think so, if I understand Wikipedia correctly)=
If yes, how about the following:
For optimization, you could check for
string.IsNullOrEmpty()
before calling thestring.Replace
function.In Addition (if this is suitable for a devanagari digit), call the
string.Replace()
function overload that takeschar
s as parameters rather thanstring
s.