问题标签 [separator]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
4 回答
1369 浏览

url - “+”或“-”作为 URL 中的分隔符?

大多数网站都使用-(如 Stack Overflow),但大多数 PHP 框架会生成+编码的 URL。

那么,什么是最适合 SEO 的呢?使用+还是-作为分隔符?

0 投票
2 回答
3647 浏览

.net - 使用小数分隔符进行本地化

.NET 是否有可能在服务器 A 上使用“,”作为小数分隔符并在另一台服务器 B 上使用“。”?+ 你怎么能检测到这个?

将字符串转换为双精度时,在服务器 A 上一切正常,但在服务器 B 上出现问题。

例子:

服务器 A:20,4 --> 20.4 服务器 B:20,4 --> 204

我们需要检测到这一点,以便在两台服务器上都可以继续工作。

谢谢,列文卡登

0 投票
2 回答
883 浏览

formatting - 使用 GAWK 打印数千个分离的浮点数

我必须用 gawk 处理一些巨大的文件。我的主要问题是我必须使用千位分隔符打印一些浮点数。例如:10000应该在输出中显示为10.000和。10000,0110.000,01

我(和谷歌)想出了这个函数,但是对于浮点数失败了:

但它因浮动而失败。

现在我正在考虑将输入拆分为一个整数和一个 < 1 部分,然后在格式化整数之后再次粘合它们,但是没有更好的方法吗?

免责声明:

  • 我不是程序员
  • 我通过一些 SHELL 环境知道这一点。可以设置千位分隔符的变量,但它必须在具有不同语言和/或语言环境设置的不同环境中工作。
  • 英语是我的第二语言,如果我用错了,请见谅
0 投票
3 回答
2825 浏览

ruby-on-rails - Rails RESTful 资源将 to_param 用于包含分隔符的字段

我希望我的 Rails 2.3.2 应用程序能够响应并生成如下 URL:

在我的 config/routes.rb 中,我有:

然后我可以访问以下资源:

通过修改我的网站模型,我可以生成更好的 URL,如下所示:

但是,对于包含“.”的域名 字符,Rails 变得不高兴。我相信这是因为'.' 字符在 ActionController::Routing::SEPARATORS 中定义,它列出了用于拆分 URL 的特殊字符。这允许您执行 /websites/1.xml 之类的操作。

所以,有没有一种干净的方法来允许'。RESTful URL 中的字符?

我尝试将 ActionController::Routing::SEPARATORS 重新定义为不包含 '.',这是解决问题的完全错误的方法。这会通过向它们附加“.:format”来混淆生成的 URL。

我也知道我可以将 :requirements => { :id => regexp } 添加到我的 config/routes.rb 以匹配包含“。”的域名 (没有这个,params[:id] 被设置为第一个 '.' 之前的域名部分),但这无助于 RESTfully 生成 URL/路径。

非常感谢 :) 尼克

0 投票
2 回答
5030 浏览

gridview - Adding line separator to Gridview

I’m relatively new to ASP.NET and SQL, so what I’m asking maybe a simple question for some, but not for me. What I have is a Grid View that I’m trying to populate softball hitting statistics with. In it I’ve stacked statistics yearly statistics on top of career totals at the very bottom of it. I’ve accomplished this by doing a semi-simple UNION statement with both sets of data (by year and career totals).

What I’m ultimately looking for is there to be a dividing line between the annual totals and career totals. For those of you who are familiar with baseball cards… that is the look I’m going for. Something like this:

SEASON AB R H 2B 3B HR RBI BB K E SAC SLG AVG 2009 63 16 29 3 4 2 19 0 0 0 4 .730 .460


Career Totals 63 16 29 3 4 2 19 0 0 0 4 .730 .460

It seems that when I try to add a single line border to the bottom row (where the career totals are)

RowCount1 = GridView1.Rows.Count - 1 GridView1.Columns.Item(RowCount1).ItemStyle.BorderStyle = BorderStyle.Solid GridView1.Rows.Item(RowCount1).BorderStyle = BorderStyle.Solid

I get a box around the career totals (last record) as opposed to a single line between the two sets of data. I’ve looked online as to how to accomplish this, but have come up empty handed. Perhaps this is such an easy question that most people don’t care to post this, but for me it’s been a mystery.

Any help you can give would be completely appreciated!

0 投票
5 回答
2759 浏览

python - 读取文件时如何从Python中的行分隔符中排除U+2028?

我有一个 UTF-8 文件,其中一些行包含 U+2028 行分隔符字符(http://www.fileformat.info/info/unicode/char/2028/index.htm)。当我从文件中读取行时,我不希望它被视为换行符。当我遍历文件或使用 readlines() 时,有没有办法将它从分隔符中排除?(除了将整个文件读入一个字符串,然后用 \n 分割。)谢谢!

0 投票
3 回答
11652 浏览

wpf - 在 StackPanel 内时,WPF 工具栏分隔符缩小为空

鉴于非常简单的 wpf 应用程序

Separator 元素缩小为空。如果我在 StackPanel 开始之前放置分隔符,它将显示出来。为什么会这样?是否有可以在某处应用的样式设置来避免这种情况?

0 投票
8 回答
79858 浏览

c# - 如何向 WinForms ContextMenu 添加分隔符?

在我的控制范围内,我有:

如何在此 ContextMenu 中添加分隔线?

0 投票
2 回答
1965 浏览

iphone - 在 contentView 后面隐藏 UITableView 分隔符

我在 iPhone OS 3.0 中制作了一个类似于左图的分组 UITableView。结果是 OS 3.1 中的正确图像。

imageView 位于分隔符下方。

我试图将内容视图放在前面。当 tableView 处于分组样式(自己绘制分隔符)时,separatorStyle 的适当性似乎被忽略了。更改分隔符颜色会给出字符串结果。

谢谢你的帮助!

编辑:这是没有更改的代码:

0 投票
3 回答
2134 浏览

uitableview - 如何在 Tableview 中使分隔符(单行)透明?

我在我的应用程序中使用了表格视图,并且在其中我使用了表格视图给出的单行分隔符。如何在表格视图中制作透明分隔符?

如果有人有任何想法/代码片段/有用的链接,我将不胜感激。