我有一个字符串数组string[] arr
,其中包含N36102W114383
,N36102W114382
等值...
我想拆分每个字符串,使得值与N36082
和W115080
一样。
这样做的最佳方式是什么?
答案 0 :(得分:1)
这应该适合你。
Regex regexObj = new Regex(@"\w\d+"); # matches a character followed by a sequence of digits
Match matchResults = regexObj.Match(subjectString);
while (matchResults.Success) {
matchResults = matchResults.NextMatch(); #two mathches N36102 and W114383
}
答案 1 :(得分:0)
原谅我,如果这不能完全编译,但我只是分解并手工编写字符串处理函数:
public static IEnumerable<string> Split(string str)
{
char [] chars = str.ToCharArray();
int last = 0;
for(int i = 1; i < chars.Length; i++) {
if(char.IsLetter(chars[i])) {
yield return new string(chars, last, i - last);
last = i;
}
}
yield return new string(chars, last, chars.Length - last);
}
答案 2 :(得分:0)
如果您每次都可以使用固定格式:
string[] split_data = data_string.Insert(data_string.IndexOf("W"), ",")
.Split(",", StringSplitOptions.None);
在此处,您可以在字符串中插入可识别的分隔符,然后通过此分隔符将其拆分。
答案 3 :(得分:0)
使用'Split'和'IsLetter'字符串函数,这在c#中相对容易。
不要忘记编写单元测试 - 以下可能会出现一些角落错误!
// input has form "N36102W114383, N36102W114382"
// output: "N36102", "W114383", "N36102", "W114382", ...
string[] ParseSequenceString(string input)
{
string[] inputStrings = string.Split(',');
List<string> outputStrings = new List<string>();
foreach (string value in inputstrings) {
List<string> valuesInString = ParseValuesInString(value);
outputStrings.Add(valuesInString);
}
return outputStrings.ToArray();
}
// input has form "N36102W114383"
// output: "N36102", "W114383"
List<string> ParseValuesInString(string inputString)
{
List<string> outputValues = new List<string>();
string currentValue = string.Empty;
foreach (char c in inputString)
{
if (char.IsLetter(c))
{
if (currentValue .Length == 0)
{
currentValue += c;
} else
{
outputValues.Add(currentValue);
currentValue = string.Empty;
}
}
currentValue += c;
}
outputValues.Add(currentValue);
return outputValues;
}
答案 4 :(得分:0)
如果您使用C#,请尝试:
String[] code = new Regex("(?:([A-Z][0-9]+))").Split(text).Where(e => e.Length > 0 && e != ",").ToArray();
答案 5 :(得分:0)
如果您只是在寻找格式NxxxxxWxxxxx,这样做会很好:
Regex r = new Regex(@"(N[0-9]+)(W[0-9]+)");
Match mc = r.Match(arr[i]);
string N = mc.Groups[1];
string W = mc.Groups[2];