505 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
3
votes
2
answers
128
views
How to remove the apostrophe from a string in VBA
I am trying to remove the apostrophe that excel place automatically at the beginning of a string, I wrote the code here below to delete the apostrophe. The code detects the char (') but did not delete ...
0
votes
1
answer
103
views
How can I get clang-tidy not to complain about lack of apostrophe in an identifier?
My IDE is running clang-tidy (v20) on my C++ code. I have an enum where one of the identifiers is isnt_owning. And - clang tidy complains about the typo. <sarcasm>Thanks a bunch! I'll go right ...
-2
votes
1
answer
40
views
Apostrophe and userinput [closed]
i want to do a cmd based program for fun and for more knowledge how to program in C#
but, my problem is that when you type something not correct in cmd then you get an error and the userinput is in ...
-1
votes
1
answer
56
views
Substitute /Concatenate
The apostrophe is this string is breaking a power automate flow. I would like the name to just be "Sheerin, Jon" Instead of "Sheerin, Jon O'Hare" and remove everything else after ...
1
vote
2
answers
266
views
How to remove apostrophe before data cells in Excel?
I want to remove the apostrophes before data ubicated in cells in Excel. The apostrophe is hidden but when you press F2 to edit the cell, it appears. It cannot be removed. Not when I open a new sheet ...
0
votes
0
answers
135
views
Apostrophe entered in the title tag as ' does not render on mobile version of any browser
I hope that this community can help me with the following query. The title of a website I look after has an apostrophe and this doesn't render on any browser in the MOBILE version ONLY. It actually ...
0
votes
0
answers
52
views
Java Escape Sequence with Apostrophe
I have a .eml file with the html content of an email inside it, as well as email headers.
I would like to form a dynamic css selector which will select elements inside the email body based on the user'...
1
vote
2
answers
91
views
How to you remove multiple apostrophes from filepaths?
My goal is to remove all the single quotes from all file paths in a directory. Working in Windows.
Preamble code:
import os
import re
directory = "/home/oem/Documents/test"
The following ...
0
votes
0
answers
110
views
Bigquery: Referencing column values with apostrophe in where clause
My where clause is (where Cut_Time_LOS_by_Outgate = "Order's past cutoff") ---> throwing an error because of apostrophe after Order. The open and closed double quotes are part of the ...
0
votes
0
answers
190
views
How to handle apostrophe in an INSERT statement when inserting into Clickhouse using Python?
I am inserting into Clickhouse but an error occurs because of the apostrophe in the statement.
tmp_list = ['A\'BCD','12345','1a2a3a4a']
insert = f'INSERT INTO tmp_table (NAME) VALUES (\'{tmp_list[0]}\...
2
votes
1
answer
524
views
Keep apostrophes when reading Excel file into pandas dataframe
Reading Excel file into Pandas dataframe like this:
import pandas as pd
df = pd.read_excel(open('C:/somedir/somefile.xlsx','rb'), sheet_name=0)
print(df)
If a value in a cell starts with ' (single-...
1
vote
1
answer
66
views
Proper way to write a dynamically built PHP form with input from array in Laravel
So I'm pretty new to Laravel and not at the point where I have mental bandwidth to mess with Vue.
In the meantime, I'm also trying to build forms dynamically to make the code easier on the eyes.
My ...
0
votes
1
answer
40
views
How Do I Pass A Schema Value With Units From Apostrophe 3?
I want to give the user the ability to customize border-radius on my component (widget) in ApostropheCMS.
I have written the following schema for the same:
borderRadiusValue: {
label: '...
0
votes
0
answers
133
views
Apostrophe issue with FFmpeg
I'm working on a company's project which is vue.js.
There are also code parts in php.
It uses FFmpeg to create a video from multiple videos.
On each video, there is a text type subtitle.
Each text is ...
2
votes
1
answer
74
views
keeping the apostrophe using the textcnt function from the tau package in R
The textcnt function in R's tau package has a split argument and it's default value is
split = "[[:space:][:punct:][:digit:]]+" ç this argumet uses the apostrophe ' to split into words too ...