Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的网页中,我使用 textarea 从用户那里获取详细信息并将其存储在数据库中。
1.这是用户输入的方式
2.这是它在数据库中的存储方式
我们的需求:1.WireSet 2.Amps 3.Lights
现在我正在检索其他页面中的详细信息如何显示结果,如图所示(1)
试试这个
var text = "Our Needs: 1.WireSet 2.Amps 3.Lights"; string[] items = text.Split(':')[1] .Split('.') .Where((s,i) => i % 2 != 0) .Select(s => s);
如果您在 html 中显示它,请使用以下命令:
text.Replace(Environment.NewLine, "<br />");