5

我想使用正则表达式将多语言字符串拆分为单语言标记。

例如对于这个英语-阿拉伯语字符串:

“他的名字是محمد,他的母亲名字是آمنه。”

结果必须如下:

  1. '他以前的名字是 '
  2. '重要的,'
  3. '而他母亲的名字是'
  4. 'آمنه.'
4

2 回答 2

6

它并不完美(你肯定需要在一些真实世界的例子中尝试一下,看看它是否合适),但这是一个开始:

splitArray = Regex.Split(subjectString, 
    @"(?<=\p{IsArabic})    # (if the previous character is Arabic)
    [\p{Zs}\p{P}]+         # split on whitespace/punctuation
    (?=\p{IsBasicLatin})   # (if the following character is Latin)
    |                      # or
    (?<=\p{IsBasicLatin})  # vice versa
    [\s\p{P}]+
    (?=\p{IsArabic})", 
    RegexOptions.IgnorePatternWhitespace);

如果前面的字符来自阿拉伯语块并且后面的字符来自基本拉丁块(反之亦然),则会在空格/标点符号上进行拆分。

于 2012-04-16T05:45:27.630 回答
0
System.Text.RegularExpressions.Regex regx = new System.Text.RegularExpressions.Regex(@"([\s\(\:]*[a-zA-Z]+[\s\)\:]*)+");
var matchs = regx.Matches(input).Cast<System.Text.RegularExpressions.Match>().ToList();
于 2012-04-19T06:56:08.030 回答