Questions tagged [non-breaking-characters]
31 questions
1
vote
5 answers
How can I find the exact value using xpath in selenium webdriver for text that contains ?
I'm having an issue selecting the exact text 'Section' from the code using xpath.
** To be clear I require the exact text selection to be made from the innerText or innerHTML of the element if that is possible, not the id. **
I'm able to use the…

Redflame
- 21
- 1
- 7
0
votes
3 answers
Replacing characters in R string based on raw hex values
Suppose I have a string in R,
mystring = 'help me'
but with a twist: The space between 'help' and 'me' is actually a non-breaking space. Non-breaking space is stored in R as , so this string can be created by
mystring =…

Bug Catcher Nakata
- 103
- 2
0
votes
0 answers
How could I fix this white space replacement code?
I've replaced all white spaces with non-breaking space in categories with the jquery below. However, it doesn't seem to work for categories found in blog pages. I did a site inspect and found that the class for each category is…

CalifLRev
- 19
- 2
0
votes
2 answers
power automate flow - html to text - odd new line
Im struggling with a mail html to text flow.
It works fine normally, but all of a sudden it is inserting a "\n" that shouldnt be there and comparing the   to the other lines where it does not do this does not reveal any differences to me that…

Michael Christensen
- 46
- 5
0
votes
0 answers
Is there any way to set the width of ` ` or `&nnbsp;` to zero?
Is there any way to set the width of or &nnbsp; to zero?
EDIT: An answer from 11 years ago suggests that it is impossible, but perhaps CSS has gotten new features since then?
I am working with a font that has only a hyphen glyph and lacks a…

Tim
- 8,669
- 31
- 105
- 183
0
votes
0 answers
Encoding issue causing difference in strings
I have a legacy service which returns a XML string from the database. Now for one particular scenario this service returns a string which has the character in it. I recently shifted this service to a new Windows 10 machine and when I wrote…

arielBodyLotion
- 47
- 1
- 8
0
votes
1 answer
Is it correct to use Word Joiner (U+2060) in the same word?
In Bangla, Hosonto (U+09CD) is used to create a ligature, which joins adjacent letters. For example ক্ক is created using ক + ্ + ক. But sometimes we need a non-joining Hosonto (ক্ক). To make it possible, traditionally we use a Zero-width non-joiner…

Iqbal Kabir
- 1,518
- 10
- 16
0
votes
1 answer
Replace u00A0 with space google script
I need to replace all instances of the character u00AO with white space. I would like to do this without looping
var rng = sheet.getDataRange();
rng.createTextFinder('u00AO').replaceAllWith(" ");
It runs but does not replace the u00AO…

xyz333
- 679
- 6
- 14
0
votes
1 answer
How can I get the non-breaking spaces between two nodes when using a node visitor?
I try to parse the following HTML source code:
Home
Blog
I implement the interface org.jsoup.select.NodeVisitor. However, it seems to skip…

gouessej
- 3,640
- 3
- 33
- 67
0
votes
1 answer
NON-BREAKING HYPHEN in Word interop C# Range
Please help.
I have a code. The code searches @"<(3)[-^~]([1-4])[-^~]([1-4])[-^~]([0-9]{1;3})?([0-9]{2})>" //(strings like 3-2-1-123-15 ) and puts the hyperlinks on it. But imagine, if the
3-2-1-123-15
has NON-BREAKING HYPHEN between numbers.…

V. Z
- 163
- 13
0
votes
2 answers
Is it possible to add a non-breaking space in CreateJS?
I try to add a non-breaking space when using CreateJS (or EaselJS). But it does not work.
For example: I don't want a linebreak between a "text" and a "!"
Example:
this.copy_01 = new cjs.Text("This is a text\u00A0!", "bold 60px 'Times New Roman'",…

Seppelhutura
- 1
- 2
0
votes
1 answer
Non breaking space after an href link is being included in the displayed hyperlink
I am having an issue with emails being sent to users from a saved template. In this template there are non-breaking spaces to preserve formatting that is expected, and there is no issue forming the link or sending the email.
However it seems that…

JRHigdon
- 49
- 6
0
votes
2 answers
jQuery html() function and
I have a string that contains unicode encoded nonbreaking space. I need to save this string to the hidden HTML element, so another function can read this value.
It looks like html() function does some transformation of the string. Example:
var…

Tamara
- 2,910
- 6
- 44
- 73
0
votes
1 answer
Apply noBreak AppleScript Illustrator
My goal here is to apply the no break parameter of Illustrator with AppleScript to two words in a text frame.
I'm able to detect the non-breaking space in a string. Then I need to apply the no break parameter to the word after and before the…

martinjack
- 51
- 6
-1
votes
2 answers
How to unify the space width in different browsers
The space shows different width in Chrome and IE, how to unify them?
In IE it is shorter than in Chrome and Firefox.
I've tried use the font but nothing seems to have happened.

herbertD
- 10,657
- 13
- 50
- 77