如何在字符串中包含格式?

发布于 2024-11-02 22:48:06 字数 284 浏览 1 评论 0原文

我需要按以下形式创建字符串:-

包含(1) 11.35kg包角豆麦芽甜非乳制品片。

产品特点:

-新

-有机

如您所见,我想要的字符串包含一些粗体子字符串、下划线字符串以及换行符(如图所示)。

请建议一些方法来做到这一点。

我只想将上述格式的许多字符串保存到 .csv 文件中,然后直接将它们从 .csv 文件上传到将显示它们的网站。

I need to create string in the following form :-

Contains (1) 11.35kg package of Chips Carob-Malt Sweet Non-Dairy.

Product features:

-New

-Organic

As you see, the string I want contains a few bold substrings, underlined strings as well as newlines (as shown).

Please suggest some way of doing this.

I just want to save many strings in the above format to a .csv file and upload them straight away from .csv file to the website where they will be displayed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

禾厶谷欠 2024-11-09 22:48:06
string.Format("Contains <b>({0}) {1:0.00}kg<b> package...")

或者类似的东西......

string.Format("Contains <b>({0}) {1:0.00}kg<b> package...")

or something close to that...

初懵 2024-11-09 22:48:06

我建议你像MSN Plus一样保存[b]和[/b]之间的粗体部分!做。您的网站必须将这些部分显示为粗体,[u]部分显示为无划线,等等。
除了使用某种标记之外,没有其他方法可以在字符串中保存格式。

I would suggest you to save the bold parts between [b] and [/b] like MSN Plus! does. Than your website has to display these parts bold, [u] parts undelined and so on.
There is no other way of saving formatting in a string then using some kind of markup.

狂之美人 2024-11-09 22:48:06

如果您使用现成的购物车软件,那么您需要查看该软件的文档,以确定您是否能够影响内容的显示。如果您可以更改格式,则很可能通过某种与数据导入机制分开的模板系统来实现。

If you are using off-the-shelf shopping-cart software then you need to look into the documentation for that software to determine whether you are able to affect the display of the content. If you can change the formatting it is most likely achieved via some kind of templating system separately from the data import mechanism.

吝吻 2024-11-09 22:48:06

如果它是网络应用程序,请尝试 http://ckeditor.com/

If it is a web app try http://ckeditor.com/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文