gpt4 book ai didi

c# - 读取括号内的字符 ()

转载 作者:太空宇宙 更新时间:2023-11-03 20:25:47 28 4
gpt4 key购买 nike

我写了一个 C# 代码来读取括号“()”中的字符串值

 string s = "Hello (World) This is (Working)";
int i = 0;
while ((i = s.IndexOf('(', i)) != -1)
{
int stop = s.Substring(i+1).IndexOf(')');
string output = s.Substring(i + 1, stop);
Console.WriteLine(output);

i++;
}

Console.ReadLine();

通过这段代码我得到了

World Working

我想用 JavaScript 实现这个所以我尝试了这个

function myFunction()
{
var s = "Hello (World) This is (Working)";
var i = 0;
while ((i = s.indexOf('(', i)) != -1)
{
var stop = s.substring(i+1).indexOf(')');
var output = s.substring(i+1, stop);
document.write(output);
i++;
}
}

但是它有不同的输出

ss (

我不擅长 javaScript,请帮我找到这个方法的解决方案,我不想使用正则表达式

最佳答案

尽管名称相似,但它们实际上并没有使用等效的方法(注意第二个参数):

尝试 substr 而不是 JavaScript -- substr(int index, int length) :

function myFunction()
{
var s = "Hello (World) This is (Working)";
var i = 0;
while ((i = s.indexOf('(', i)) != -1)
{
var stop = s.substr(i+1).indexOf(')');
var output = s.substr(i+1, stop);
document.write(output);
i++;
}
}

关于c# - 读取括号内的字符 (),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10730774/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com