7,763 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
55
views
Rotate Pelvis to face the camera UE5.6
I am in the process of making an active ragdoll character in ue5.6. I have gotten the ragdoll walking, grabbing, hanging, jumping, and all sorts of fun stuff. But I am currently stuck on how to make ...
0
votes
1
answer
114
views
excel vba how to enter the Unicode Character "Δ" (U+0394) [duplicate]
I am struggling to enter this character into a find string eg
Call sf_replace(sf_rg1, "Tightness " & Chr(349) & "P", Chr(349) & "P")
and found this page
https:...
0
votes
1
answer
91
views
SAS: unique values of variables/vtable
I'm looking for a way to extract unique values of char variables in my datasets.
I came across this paper
https://pharmasug.org/proceedings/2015/IB/PharmaSUG-2015-IB07.pdf
This is an example from the ...
0
votes
7
answers
318
views
How does '0' + (n % 10) convert an integer digit to its character representation in C?
I'm learning about converting numbers to characters in C, and I came across the expression:
char c = '0' + (n % 10);
I understand that '0' is a character and n % 10 extracts the last digit of a ...
0
votes
0
answers
40
views
Rigged Character Shows in Front of UI Panels Even When Placed Behind in Hierarchy
I'm working on a 2D mobile game in Unity as our project, and I have a rigged character called Bytebotx. I want this character to always appear behind UI panels, like the Settings panel, whenever they'...
0
votes
0
answers
41
views
Rigid clothes and animation Blender
I'm a game developer and have already designed characters for my game and also designed clothing (the clothing is rigid, not fabric).
But my problem is with attaching the object to the skeleton. ...
-1
votes
2
answers
71
views
Altering wordprocessed html document, I want to add some lines to the head and a script to the body using php [closed]
My original question was a result of confusion caused by a failing brain and strong painkillers! The basic issues is with creating php string variables. The comments so far have helped with clarifying ...
0
votes
1
answer
167
views
How to find invisible characters in Excel
I have here an Excel file that checks the presence of:
long hyphen (–)
curly apostrophe (’)
ï (e.g., naïve)
Non-breaking hyphen (‐)
Screenshot 1
Screenshot 2
Cell formula after each header above ...
2
votes
2
answers
97
views
How to convert a string (HTML Entity) to a unicode character
I have a string like
const mystring1 = "😁" // -> 😉
const mystring2 = "ሴ" // -> ሴ
const mystring3 = "@" // -> @
How do I get ...
0
votes
0
answers
33
views
Unprecedented points2network error when keeping SpatialLinesDataFrame "ntdata" character edge attributes using approach=4
Something odd is happening with the points2network function of shp2graph package. When I try approach 4 that creates Virtual Edges between my POIS and the network (which I absolutely need), the ...
2
votes
5
answers
104
views
Remove not alphanumeric characters from string without extension
I want to rename file name to the expected output. The problem is some user has upload file name with special characters that I cant put on replace statement. If using replace(/\W/g, '') it will ...
0
votes
2
answers
71
views
SAS dynamically convert all columns but one into numeric (missing values included)
I'm trying to convert all my columns to numeric except the first column which I want to keep character. They are currently character-based and are missing. I tried the following code below.
/*fake ...
0
votes
0
answers
35
views
Formula in VBA not match in may range [duplicate]
Please Help me for this Script on VBA Excel:
Range("A7").Formula = "=SUMPRODUCT((Table_Query_dBF_Monde[INVOICENO]<>"")/COUNTIF(Table_Query_dBF_Monde[INVOICENO];...
0
votes
3
answers
123
views
How can I extract the numeric portion before the first letter in a FileMaker calculation?
I have a field called Serial Number in FileMaker, and I need to extract the numeric portion of the string that appears before the first letter (A-Z), after removing the first 6 characters.
Here's the ...
-1
votes
1
answer
62
views
Assembly: Character type checking
So I'm practicing disassembling on an C program that checks if the user given serial number fulfills the requirements.
The program manually checks each character from the serial number, executing the ...