我正在试图弄清楚在字符串中的字符之前获取所有内容的最佳方法。下面是一些示例字符串。之前字符串的长度 - 变化,可以是任何长度
223232-1.jpg
443-2.jpg
34443553-5.jpg
所以我需要从起始索引0到右前的值 - 。所以子串会变成223232,443和34443553
答案 0 :(得分:117)
class Program
{
static void Main(string[] args)
{
Console.WriteLine("223232-1.jpg".GetUntilOrEmpty());
Console.WriteLine("443-2.jpg".GetUntilOrEmpty());
Console.WriteLine("34443553-5.jpg".GetUntilOrEmpty());
Console.ReadKey();
}
}
static class Helper
{
public static string GetUntilOrEmpty(this string text, string stopAt = "-")
{
if (!String.IsNullOrWhiteSpace(text))
{
int charLocation = text.IndexOf(stopAt, StringComparison.Ordinal);
if (charLocation > 0)
{
return text.Substring(0, charLocation);
}
}
return String.Empty;
}
}
答案 1 :(得分:99)
使用split功能。
static void Main(string[] args)
{
string s = "223232-1.jpg";
Console.WriteLine(s.Split('-')[0]);
s = "443-2.jpg";
Console.WriteLine(s.Split('-')[0]);
s = "34443553-5.jpg";
Console.WriteLine(s.Split('-')[0]);
Console.ReadKey();
}
如果您的字符串没有-
,那么您将获得整个字符串。
答案 2 :(得分:59)
String str = "223232-1.jpg"
int index = str.IndexOf('-');
if(index > 0) {
return str.Substring(0, index)
}
答案 3 :(得分:4)
自从这个帖子开始以来,事情已经发生了一些变化。
现在,您可以使用
string.Concat(s.TakeWhile((c) => c != '-'));
答案 4 :(得分:3)
执行此操作的一种方法是将String.Substring
与String.IndexOf
一起使用:
int index = str.IndexOf('-');
string sub;
if (index >= 0)
{
sub = str.Substring(0, index);
}
else
{
sub = ... // handle strings without the dash
}
从位置0开始,返回所有文本,但不包括短划线。
答案 5 :(得分:0)
以BrainCore的答案为基础:
int index = 0;
str = "223232-1.jpg";
//Assuming we trust str isn't null
if (str.Contains('-') == "true")
{
int index = str.IndexOf('-');
}
if(index > 0) {
return str.Substring(0, index);
}
else {
return str;
}
答案 6 :(得分:0)
您可以为此使用正则表达式,但是当输入字符串与正则表达式不匹配时,最好避免出现额外的异常。
首先要避免转义为正则表达式的额外麻烦-我们可以为此使用函数:
String reStrEnding = Regex.Escape("-");
我知道这不会做任何事情-因为“-”与Regex.Escape("=") == "="
相同,但是例如字符是@"\"
就会有所不同。
然后,我们需要从字符串的乞求到字符串结尾匹配,或者如果找不到结尾,则进行替换-然后不匹配。 (空字符串)
Regex re = new Regex("^(.*?)" + reStrEnding);
如果您的应用程序对性能至关重要,那么对于新的Regex,请单独使用一行;如果不是,则可以将所有内容放在一行中。
最后匹配字符串并提取匹配的模式:
String matched = re.Match(str).Groups[1].ToString();
然后,您可以编写独立的函数(如在另一个答案中所做的那样),或编写内联lambda函数。我现在使用两种表示法-内联lambda函数(不允许使用默认参数)或单独的函数调用来编写。
using System;
using System.Text.RegularExpressions;
static class Helper
{
public static string GetUntilOrEmpty(this string text, string stopAt = "-")
{
return new Regex("^(.*?)" + Regex.Escape(stopAt)).Match(text).Groups[1].Value;
}
}
class Program
{
static void Main(string[] args)
{
Regex re = new Regex("^(.*?)-");
Func<String, String> untilSlash = (s) => { return re.Match(s).Groups[1].ToString(); };
Console.WriteLine(untilSlash("223232-1.jpg"));
Console.WriteLine(untilSlash("443-2.jpg"));
Console.WriteLine(untilSlash("34443553-5.jpg"));
Console.WriteLine(untilSlash("noEnding(will result in empty string)"));
Console.WriteLine(untilSlash(""));
// Throws exception: Console.WriteLine(untilSlash(null));
Console.WriteLine("443-2.jpg".GetUntilOrEmpty());
}
}
顺便说一句-将正则表达式模式更改为"^(.*?)(-|$)"
将允许拾取直到"-"
模式,或者如果找不到模式-拾取所有内容直到字符串结尾。
答案 7 :(得分:0)
LINQy方式
String.Concat(“ 223232-1.jpg” .TakeWhile(c => c!='-'))
(但是,您确实需要测试null;)
答案 8 :(得分:0)
..
)/// <summary>
/// Get substring until first occurrence of given character has been found. Returns the whole string if character has not been found.
/// </summary>
public static string GetUntil(this string that, char @char)
{
return that[..(IndexOf() == -1 ? that.Length : IndexOf())];
int IndexOf() => that.IndexOf(@char);
}
测试:
[TestCase("", ' ', ExpectedResult = "")]
[TestCase("a", 'a', ExpectedResult = "")]
[TestCase("a", ' ', ExpectedResult = "a")]
[TestCase(" ", ' ', ExpectedResult = "")]
[TestCase("/", '/', ExpectedResult = "")]
[TestCase("223232-1.jpg", '-', ExpectedResult = "223232")]
[TestCase("443-2.jpg", '-', ExpectedResult = "443")]
[TestCase("34443553-5.jpg", '-', ExpectedResult = "34443553")]
public string GetUntil(string input, char until) => input.GetUntil(until);