iT邦幫忙

0

有人知道如何在VS2022讓他自動補上右側雙引號?

  • 分享至 

  • xImage

我個問題~以前在VS2010版本
用取代指令,可以讓缺右側雙引號的字串補上去~

如下圖操作
https://ithelp.ithome.com.tw/upload/images/20240111/200613697DPF462i7e.png
取代後~自動補右側雙引號
https://ithelp.ithome.com.tw/upload/images/20240111/200613692j6AaCsEXx.png

然後同樣動作在VS2022操作
https://ithelp.ithome.com.tw/upload/images/20240111/20061369xY0mVtv3fd.png

取代後並沒有補右側雙引號
https://ithelp.ithome.com.tw/upload/images/20240111/20061369DHqpa5ok1p.png

這是在VS2022哪邊設定的嗎??有人知道嗎^_^?

另外有其他軟體推薦有這樣做法的操作嗎@@?

自動補右側雙引號?

不知道這個對你有用嗎
https://stackoverflow.com/questions/70759967/how-to-disable-automatic-double-quotation-marks-in-visual-studio-2022
那個討論是移除掛號的方式~我查了那個位置~好像也沒有特別討論 雙引號的設定~
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

1
瑪琪揮
iT邦新手 5 級 ‧ 2024-01-12 03:11:35
最佳解答

https://ithelp.ithome.com.tw/upload/images/20240112/20164145tiP9w6M1hV.png

首先下面中間那個像星號的圖示要勾選
然後用正規運算式(?<value>...)具名設一個變數,在取代值中以${value}表示即可

參考

試了一下~他第一條有抓到~後面取代就沒有成功@@..
https://ithelp.ithome.com.tw/upload/images/20240112/20061369XCovHkhVNj.png

只取代成功一個
https://ithelp.ithome.com.tw/upload/images/20240112/20061369cgbYoVJhLf.png

我將原本的取代條件

--(?<value>[\s\w]+)\r\n
Sql &= " ${value}"\r\n

改成這樣

--(?<value>[\a-z]+)\r\n
\tSql &= " ${value}"\r\n

剩下的取代就可以都抓到了~
https://ithelp.ithome.com.tw/upload/images/20240112/20061369TPyJzJmgwx.png
https://ithelp.ithome.com.tw/upload/images/20240112/20061369QSRSPU5bOL.png

我要發表回答

立即登入回答