Questions tagged [special-characters]

Special characters (as they apply to programming) are language-specific reserved characters or symbols used to accomplish a specific task (e.g. wildcard characters, data type indicators, escape characters, etc).

Every character is special in its own way. When talking about "special characters" in a question, be specific. Do you mean ASCII symbols, Japanese kana, or Egyptian hieroglyphs?

For example, when working with Unicode, characters from exotic scripts aren't more "special", technically, than characters from the ASCII range. If you mean characters that you can't enter directly with an US PC keyboard, you should probably use the term "non-ASCII characters" and avoid this tag.

5011 questions
1
vote
0 answers

Can I use multiple NLS_LANG in same sql loader?

I have a situation where my Oracle sql loader has to support 4 character sets. The loader script is common and loads files from multiple country sources, hence the requirement. At the moment, the value of a field coming from file is…
Raj
  • 11
  • 1
1
vote
1 answer

I want to show a column with some special charcter in SQL

I need to extract a column[Employee] in DB as "Employee(Emp)" in Hive. Is that possible we can handle in hive. Select Employee as Employee(Emp) from Emp_Table But it seems doesnt work as expected
1
vote
1 answer

How to do Elastic search special character search using boolquery builder

I'm using BoolqueryBuilder for searching values with java spring boot backend. And I need to search in elastic search values with special characters Like '@#$%test test search' Is there any way to fetch search values with querystring / matchquery /…
1
vote
1 answer

Special character '-' not read from command line python

My python code is as follows: import argparse parser = argparse.ArgumentParser() parser.add_argument("--cmd_list", nargs="+") args = parser.parse_args() cmd_list = args.cmd_list print(cmd_list) I am aware of the fact that if I need to pass special…
1
vote
1 answer

How can I access an xpath with a colon in the name?

I am trying to access the contents of the path below: /newsMessage/itemSet/newsItem[2]/contentSet/remoteContent[3]/rtr:altId However, the path is not being accepted due to the colon, is there any way to escape this character or make the contents of…
user48290
  • 11
  • 1
1
vote
1 answer

Are there unicode symbols for entering basic electrical symbols from multimeter?

I have a markdown file that has some of notes related to basic testing with a multimeter. I know I can use the capital Omega symbol (U+03A9) for Ohms but for a lot of the other symbols, I haven't found any good options other than either showing a…
zpangwin
  • 1,082
  • 1
  • 12
  • 17
1
vote
1 answer

Why can't I select special characters using mysqli functions?

I have been looking for an answer for a couple days, and thus far haven't found an answer... I am building a website for a client, and am using a MySQL database to store data for a menu, and am using PHP mysqli prepared statements for working with…
1
vote
2 answers

Java method to check if String includes special characters

I'm trying to write a Java code to check if password includes characters, numbers and special characters. Everything fine until the special characters part. The idea is that the index of specialChars and the characters of the Password file are…
user13707732
1
vote
2 answers

How to sort a Alphanumeric string with special characters in C# using Linq?

How to sort a Alphanumeric string with special characters in C# using Linq? Order should be first special characters, then numbers and then alphabets. Example : Input - { Hello, #Test, @Red, &While, 123@Test, @123Test, %54Sun, Dom, Left } Expected -…
vivek
  • 21
  • 4
1
vote
2 answers

Remove special character (?, ()) from value in dataframe

I would like to have a code in order to remove special character such as ? from values in a column in a dataframe. I would like to remove from ()?()()() hello world' the () and the ?. However, when I am using the following…
1
vote
2 answers

how to fetch string separated by special character caret '^' using grep

I have following string in text file: ^25555555~BIG^20200629^20022222^20200629^55555555^^^DI^00~CUR^ZZ^USD and want to fetch string between BIG^ and ^00 i.e. 20200629^20022222^20200629^25523652^^^DI. I tried to use following command but it is not…
PravinB
  • 11
  • 1
1
vote
1 answer

How to write tick marks and brackets with Ansible 'lineinfile' module?

I am trying to write the following string with Ansible lininfile. The failing Ansible task: - name: Insert GetInterfaceIP lineinfile: path: /etc/consul.d/consul.hcl regexp: '^advertise' line: advertise_addr = "{{ GetInterfaceIP `eth0`…
fmnbg
  • 15
  • 2
1
vote
1 answer

Searching For Special Characters in postgresql

i am trying to find rows in a postgresql table where a specific column contains special characters excluding the following @^$.!\-#+'~_ any help appreciated
zarek37
  • 27
  • 3
1
vote
2 answers

Appending line with special characters in shell

I want to appends each line of the file as below: file.txt : adminsrv.tar Output: - archive: "packages/images/adminsrv.tar" I tried several method like the one below and ended up with error: input=/var/tmp/file.txt while read -r line Do sed -i…
1
vote
0 answers

Converting shaped font to normal font problem

I have a string like : ❤️ I would like to get output like : KK❤️GG I tried a lot of ways such as I tried to change font with ARIALUNI.TTF. Also I tried to Unidecode(UnidecodeSharpFork nuget package). Note that : If it was a static situation, I could…
Mehmet
  • 65
  • 1
  • 7