问题标签 [removing-whitespace]

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 投票
7 回答
510 浏览

c# - 从字符串中修剪空白字符

我有一个字符串,单词之间的空白字符(或空格)组合\t未知\n。例如:

我想用一个空格替换每个内部空白字符序列:

.NET 是否提供了一种内置方式来执行此操作?如果没有,我怎么能通过 C# 做到这一点?

0 投票
6 回答
15156 浏览

java - Java拆分和替换字符串

我有一个字符串变量。字符串的例子是这样的:

我想通过拆分空格来分配一个数组字符串,就像这样。我只想取它的前 4 个值。

8755 3356 不需要在这个数组字符串中赋值。

但是,abcand12345由换行符而不是空格分隔。所以我尝试用我的函数替换换行符变成空格,就像这样:

要将溢出的字符串分配到数组字符串中,我检测了空白的索引,即

并把它放在循环中

并将前 4 个值分配给它。然而,在我将换行符替换为空格后,会有双空格,前四个数组会变成这样

如何通过跳过空白值来分配数组字符串? NETBEAN中没有拆分功能。我知道java得到了。=)

0 投票
3 回答
35438 浏览

c# - 如何使用c#删除中间的空格

如何使用 c# 删除中间的空格?我有string name="My Test String"并且我需要字符串的输出,就像"MyTestString"使用 c# 一样。请帮我。

0 投票
7 回答
237874 浏览

javascript - 如何从给定的 html 字符串中删除前导和尾随空格?

我有以下 HTML 字符串。什么是 JavaScript 中用于从该字符串中删除前导和尾随空格的示例代码?

0 投票
1 回答
613 浏览

html - 网页右侧的空白

我正在帮助我的朋友设计的网页上有一个奇怪的空白,我不知道如何摆脱它。该网站甚至没有完成,所以希望这不算作广告: http: //mow4me.com/

有人能告诉我为什么会这样吗,因为我一直在用 Chrome 的开发工具查看元素,但似乎没有什么突出的......

编辑:该网站在 IE 中看起来很合适...

0 投票
2 回答
305 浏览

android - 粘贴到edittextbox时如何删除空白?

我需要在我的应用程序的编辑框中写“tingting” 。首先我写了ting,然后我复制了文本并将其粘贴到同一个编辑框中。但是编辑文本中的值是“ting ting”。
.我知道如何在从编辑文本中获取值时删除空格。但是我想在编辑框中粘贴文本时删除空格
我该怎么做?下面给出的是我的编辑文本框。

0 投票
2 回答
5078 浏览

xslt - Remove whitespace from HTML generated using XSL

Background

Maintain readable XSL source code while generating HTML without excessive breaks that introduce spaces between sentences and their terminating punctuation. From Rethinking XSLT:

White space in XSLT stylesheets is especially problematic because it serves two purposes: (1) for formatting the XSLT stylesheet itself; and (2) for specifying where whitespace should go in the output of XSLT-processed XML data.

Problem

An XSL template contains the following code:

This, for example, generates the following output (with whitespace exactly as shown):

All major browsers produce:

Nearly flawless, except for the space between the word minutes and the punctuation. The desired output is:

It might be possible to eliminate the space by removing the indentation and newlines within the XSL template, but that means having ugly XSL source code.

Workaround

Initially the desired output was wrapped in a variable and then written out as follows:

This worked until I tried to wrap <span> elements into the variable. The <span> elements never appeared within the generated HTML code. Nor is the following code correct:

Technical Details

The stylesheet already uses:

Related

Question

How do you tell the XSLT processor to eliminate that space?

Thank you!

0 投票
2 回答
5023 浏览

unix - remove white space line from same named files in multiple subdirectories in unix

I have multiple files ( > 1000) with same name in different subdirectories

dir1/out.txt

dir2/out.txt

dir3/out.txt

I want to remove all white spaces (usually at heading row, tail row and in between rows.

Is there is quick way to do in Unix ? Apolozie for simple question.

Edit:

I am not trying to remove every space rather just whole lines that are white spaces

0 投票
7 回答
39976 浏览

shell - 如何删除多个文件的尾随空格?

是否有任何工具/UNIX 单行可以就地删除多个文件的尾随空格。

例如,可以与find结合使用。

0 投票
5 回答
3244 浏览

regex - 正则表达式:如何在 Perl 中删除字符串之间的多余空格

我正在开发一个程序,该程序需要用户输入两个文件名。不幸的是,如果用户不遵循指定的输入格式,程序很容易中断。我想编写代码来提高它对这些类型错误的弹性。当你看到我的代码时你就会明白:

显然,如果用户输入了错误的文件名类型(.tab 文件而不是 .txt 或 .seq 而不是 .qseq),则此代码运行可能会出错。我想要可以进行某种检查的代码,以查看用户是否输入了适当的文件类型。

另一个可能破坏代码的错误是如果用户在文件名前输入了太多空格。例如:sample1.qseq,(这里想象6个空格)barcode.txt(注意逗号后面的很多空格)

另一个例子:(假设这里有6个空格)sample1.qseq,barcode.txt(这次注意第一个文件名前的空格数)

我还想要可以删除多余空格的代码行,这样程序就不会中断。我认为用户输入必须采用以下格式:sample1.qseq、barcode.txt。用户输入必须采用这种格式,以便我可以正确地将文件名索引到数组中并稍后将它们移出。

感谢任何帮助或建议非常感谢!