回答:
正規表現を避けたい場合、私が考えられる最も簡単な方法は次のとおりです。
string input = "User name (sales)";
string output = input.Split('(', ')')[1];
var input = "(fdw) User name (sales) safdsdf (again?)"; var output = input.Split('(', ')').Where((item, index) => index % 2 != 0).ToList();
sales
を含む入力文字列からも抽出されることに注意してください)sales(
(sales(
これを行う非常に簡単な方法は、正規表現を使用することです。
Regex.Match("User name (sales)", @"\(([^)]*)\)").Groups[1].Value
(非常に面白い)コメントへの応答として、いくつかの説明付きの同じ正規表現を以下に示します。
\( # Escaped parenthesis, means "starts with a '(' character"
( # Parentheses in a regex mean "put (capture) the stuff
# in between into the Groups array"
[^)] # Any character that is not a ')' character
* # Zero or more occurrences of the aforementioned "non ')' char"
) # Close the capturing group
\) # "Ends with a ')' character"
var filterRegex = new Regex(Regex.Escape("(") + "([^()]*)" + Regex.Escape(")"));
括弧が1組しかないと仮定します。
string s = "User name (sales)";
int start = s.IndexOf("(") + 1;
int end = s.IndexOf(")", start);
string result = s.Substring(start, end - start);
int end = s.IndexOf(")", start);
。私は編集をキューに入れました...
正規表現は、ここでの最良のツールかもしれません。それらに慣れていない場合は、Expressoをインストールすることをお勧めします-優れた小さな正規表現ツールです。
何かのようなもの:
Regex regex = new Regex("\\((?<TextInsideBrackets>\\w+)\\)");
string incomingValue = "Username (sales)";
string insideBrackets = null;
Match match = regex.Match(incomingValue);
if(match.Success)
{
insideBrackets = match.Groups["TextInsideBrackets"].Value;
}
string input = "User name (sales)";
string output = input.Substring(input.IndexOf('(') + 1, input.IndexOf(')') - input.IndexOf('(') - 1);
input = "User name (sales(1))
するinput.LastIndexOf(')')
ものを使いたいかもしれません。
using System;
using System.Text.RegularExpressions;
private IEnumerable<string> GetSubStrings(string input, string start, string end)
{
Regex r = new Regex(Regex.Escape(start) +`"(.*?)"` + Regex.Escape(end));
MatchCollection matches = r.Matches(input);
foreach (Match match in matches)
yield return match.Groups[1].Value;
}
int start = input.IndexOf("(") + 1;
int length = input.IndexOf(")") - start;
output = input.Substring(start, length);
regex
この方法は、私が考える優れているが、あなたは謙虚を使用したい場合substring
string input= "my name is (Jayne C)";
int start = input.IndexOf("(");
int stop = input.IndexOf(")");
string output = input.Substring(start+1, stop - start - 1);
または
string input = "my name is (Jayne C)";
string output = input.Substring(input.IndexOf("(") +1, input.IndexOf(")")- input.IndexOf("(")- 1);
次に、正規表現の使用を回避する汎用の読み取り可能な関数を示します。
// Returns the text between 'start' and 'end'.
string ExtractBetween(string text, string start, string end)
{
int iStart = text.IndexOf(start);
iStart = (iStart == -1) ? 0 : iStart + start.Length;
int iEnd = text.LastIndexOf(end);
if(iEnd == -1)
{
iEnd = text.Length;
}
int len = iEnd - iStart;
return text.Substring(iStart, len);
}
あなたの特定の例でそれを呼び出すには、次のことができます:
string result = ExtractBetween("User name (sales)", "(", ")");
正規表現は非常に便利ですが、書くのが非常に難しいことがわかりました。それで、私はいくつかの研究をして、それらをとても簡単に書くことができるこのツールを見つけました。
構文を理解するのは難しいので、それらを避けないでください。彼らはとても強力なことができます。
非常によく似た実装のソリューションを探していたときに、これに遭遇しました。
これが私の実際のコードからの抜粋です。最初の文字(インデックス0)から部分文字列を開始します。
string separator = "\n"; //line terminator
string output;
string input= "HowAreYou?\nLets go there!";
output = input.Substring(0, input.IndexOf(separator));
このコードは、すべてではないにしても、ほとんどのソリューションよりも高速で、文字列 拡張メソッドとしてパックされています。再帰的なネストはサポートされていません。
public static string GetNestedString(this string str, char start, char end)
{
int s = -1;
int i = -1;
while (++i < str.Length)
if (str[i] == start)
{
s = i;
break;
}
int e = -1;
while(++i < str.Length)
if (str[i] == end)
{
e = i;
break;
}
if (e > s)
return str.Substring(s + 1, e - s - 1);
return null;
}
これは少し長くて遅いですが、再帰的なネストをよりうまく処理します:
public static string GetNestedString(this string str, char start, char end)
{
int s = -1;
int i = -1;
while (++i < str.Length)
if (str[i] == start)
{
s = i;
break;
}
int e = -1;
int depth = 0;
while (++i < str.Length)
if (str[i] == end)
{
e = i;
if (depth == 0)
break;
else
--depth;
}
else if (str[i] == start)
++depth;
if (e > s)
return str.Substring(s + 1, e - s - 1);
return null;
}