简体   繁体   中英

C# - Get All Words Between Chars

I have string:

string mystring = "hello(hi,mo,wo,ka)";

And i need to get all arguments in brackets. Like:

hi*mo*wo*ka

I tried that:

string res = "";
string mystring = "hello(hi,mo,wo,ka)";
mystring.Replace("hello", "");
string[] tokens = mystring.Split(',');
string[] tokenz = mystring.Split(')');
foreach (string s in tokens)
{
     res += "*" + " " + s +" ";
}
foreach (string z in tokenz)
{
     res += "*" + " " + z + " ";
}
return res;

But that returns all words before ",".

(I need to return between

"(" and ","

"," and ","

"," and ")"

)

You can try to use \\\\(([^)]+)\\\\) regex get the word contain in brackets,then use Replace function to let , to *

string res = "hello(hi,mo,wo,ka)";

var regex =  Regex.Match(res, "\\(([^)]+)\\)");
var result = regex.Groups[1].Value.Replace(',','*');

c# online

Result

hi*mo*wo*ka

This way :

  Regex rgx = new Regex(@"\((.*)\)");
  var result = rgx.Match("hello(hi,mo,wo,ka)");

Split method has an override that lets you define multiple delimiter chars:

string mystring = "hello(hi,mo,wo,ka)";
var tokens = mystring.Replace("hello", "").Split(new[] { "(",",",")" }, StringSplitOptions.RemoveEmptyEntries);  

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM