Welcome to the Onshape forum! Ask questions and join in the discussions about everything Onshape.
First time visiting? Here are some places to start:- Looking for a certain topic? Check out the categories filter or use Search (upper right).
- Need support? Ask a question to our Community Support category.
- Please submit support tickets for bugs but you can request improvements in the Product Feedback category.
- Be respectful, on topic and if you see a problem, Flag it.
If you would like to contact our Community Manager personally, feel free to send a private message or an email.
How Can I Remove a Character from a String
Kyler_Walker
Member Posts: 202 PRO
I have a string that needs the last character removed. I can't seem to figure out how to do it. With the following expression, I can turn it into an array and remove the last element, but I can't figure out how to get it back to a string.
resize(splitIntoCharacters(#Description),length(#Description)-2,1)
I am trying to do this in a variable feature. Any help would be appreciated. Thanks!
resize(splitIntoCharacters(#Description),length(#Description)-2,1)
I am trying to do this in a variable feature. Any help would be appreciated. Thanks!
0
Best Answer
-
_anton Member, Onshape Employees Posts: 395This is the most concise solution I can think of: https://cad.onshape.com/documents/735a8ca1f7dc420493b5b7a6/w/25a2838729eeffe7d2c70ff7/e/4fc2630432fb6ed116e0b3e4
(Edit for posterity:match("frog", "(.*).").captures[1]; // fro
)3
Answers
(Edit for posterity: )