character Questions

2

Solved

I have a TextBlock with TextTrimming = TextTrimming.CharacterEllipsis and I want the dots to appear at the beginging. Is there a property for this? For example if I have the text "123456789ABCDEF"...
Blazonry asked 29/11, 2010 at 9:34

2

Solved

I want to convert NSAttributedString containing RTFD to uppercase without losing attributes of existing characters and graphics. Thanks,
Jemima asked 16/7, 2011 at 10:11

5

Solved

I am trying to generate an XML file in a PHP web application: <?php ... header('Content-Type: application/xml'); header('Content-Disposition: attachment; filename=test.xml'); echo "<?xml ve...
Westwardly asked 22/3, 2013 at 19:20

20

Solved

I have the following string: 'BOB*', how do I trim the * so it shows up as 'BOB' I tried the RTRIM('BOB*','*') but does not work as says needs only 1 parameter.
Electronic asked 20/10, 2011 at 15:52

10

Solved

Simple question (in C++): How do I convert a single character into a string. So for example, I have string str = "abc"; And I want to extract the first letter, but I want it to be a strin...
Brittaney asked 11/7, 2010 at 9:39

10

Solved

What's the HTML character entity for the # sign? I've looked around for "pound" (which keeps returning the currency), and "hash" and "number", but what I try doesn't s...
Hooknosed asked 11/6, 2010 at 18:14

2

Solved

I'm not really sure how to express it but I'm searching for unicode letters which are more than one visual latin letter. I found this in Word so far: DZ Dz dz NJ Lj LJ Nj nj Any others?
Suppress asked 3/3, 2018 at 0:47

6

Can anyone suggest me how to check if a String contains full width characters in Java? Characters having full width are special characters. Full width characters in String: abc@gmail.com Half w...
Filicide asked 8/4, 2015 at 7:52

8

Solved

Which characters are allowed in GET parameters without encoding or escaping them? I mean something like this: http://www.example.org/page.php?name=XYZ What can you have there instead of XYZ? I thin...
York asked 21/9, 2009 at 16:59

1

Solved

Our company upgraded to Delphi 12 a few months ago. Today I discovered that my image viewer's context menu, which used to look like in the left image below, now appears with a single menu item blan...
Trumpetweed asked 19/3 at 13:4

23

I am so close to getting this, but it just isn't right. All I would like to do is remove the character r from a string. The problem is, there is more than one instance of r in the string. However, ...
Peterkin asked 29/3, 2012 at 20:24

9

Solved

I don't see Dart strings treated as lists of characters. I assume I have to use for loops, which would be lame.
Andesine asked 15/2, 2012 at 1:52

6

I would like to find how many emojis the user has input into an EditText. If the user only enters emojis, and uses 3 or less, I want to be able to display that string within the app with a larger f...
Graeco asked 21/7, 2017 at 15:10

12

Solved

I have a web form that users can fill out and that content fills up a PDF with FPDF and PHP. When a user enters a word with an apostrophe, a slash appears before it on the PDF. Similarly, special ...
Beggarly asked 18/8, 2010 at 16:0

11

Solved

How to get an "E" output rather than 69? package main import "fmt" func main() { fmt.Print("HELLO"[1]) } Does Golang have function to convert a char to byte and vice versa?
Pryer asked 22/2, 2013 at 6:56

17

Is there a way to range over characters? Something like this: for c in xrange( 'a', 'z' ): print c
Obsequent asked 9/8, 2011 at 18:37

9

Solved

I have used adist to calculate the number of characters that differ between two strings: a <- "Happy day" b <- "Tappy Pay" adist(a,b) # result 2 Now I would like to extract those character...
Neurotomy asked 3/3, 2015 at 14:35

5

Solved

I'm wondering how can I can navigate to a character location? I have a script that will tell me the character location number, no line number. INFO: log-process/3093 on local-machine: Some Log Mes...
Confederacy asked 17/3, 2015 at 15:44

4

Solved

I'm trying to loop through every character in a string . I only however know how to loop for every word in a string ussing the following: (set /P MYTEXT=)<C:\MYTEXTFILE.txt set MYEXAMPLE=%MYTE...
Chalcedony asked 21/2, 2013 at 14:31

13

Solved

Which characters can be used for naming a JavaScript variable? I want to create a small "extension library" for my non-JavaScript users here at work (who all seem to be squeamish when it comes to ...
Sold asked 2/11, 2009 at 13:4

9

Solved

I need a method that can tell me if a String has non alphanumeric characters. For example if the String is "abcdef?" or "abcdefà", the method must return true.
Cyclist asked 23/11, 2011 at 19:53

6

Solved

The task what I'm trying to do is about showing up the frequency of every single characters from the string object, for the moment I've done some part of code, just doesn't have the easy concept in...
Hort asked 6/8, 2015 at 18:27

4

My student and I both loaded the same dataset, installed the same packages, and were running the same code. When I run "frq" I get a frequency table and the variable is labeled as "n...
Nifty asked 7/12, 2020 at 17:4

6

Solved

How do I use a character in a switch-case? I will be getting the first letter of whatever the user inputs. import javax.swing.*; public class SwitchCase { public static void main (String[] args) ...
Chrysanthemum asked 2/8, 2011 at 0:23

5

Solved

Does Java include any constants for single characters such as SPACE? Having names taken from Unicode would be handy when doing string manipulations. I want this: String musician = "Lisa" + Char...
Calyptra asked 17/10, 2015 at 6:22

© 2022 - 2024 — McMap. All rights reserved.