博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
delphi 单引号在字符串中使用方法
阅读量:5349 次
发布时间:2019-06-15

本文共 863 字,大约阅读时间需要 2 分钟。

可以看delph的帮助,里面有这个问题详细说明:

A character string, also called a string literal or string constant, consists of a quoted string, a control string, or a combination of quoted and control strings. Separators can occur only within quoted strings.
A quoted string is a sequence of up to 255 characters from the extended ASCII character set, written on one line and enclosed by apostrophes. A quoted string with nothing between the apostrophes is a null string. Two sequential apostrophes in a quoted string denote a single character, namely an apostrophe. For example,
'BORLAND'           { BORLAND }  //字符
'You''ll see'       { You'll see }     //两个'连接在一起代表字符中的一个'号.
''''                { ' }   同上.
''                  { null string }  //空值
' '                 { a space }       //一个空格

 

示例:

SQL语句:  where usename like '%张三%'
str1 :='where ' + FieldName + ' like ' + '''%' + SearchBuffer + '%'''       

 

转载于:https://www.cnblogs.com/smartlittleant/p/4080433.html

你可能感兴趣的文章
移动端 响应式、自适应、适配 实现方法分析(和其他基础知识拓展)
查看>>
selenium-窗口切换
查看>>
使用vue的v-model自定义 checkbox组件
查看>>
[工具] Sublime Text 使用指南
查看>>
Web服务器的原理
查看>>
常用的107条Javascript
查看>>
#10015 灯泡(无向图连通性+二分)
查看>>
mysql统计一张表中条目个数的方法
查看>>
ArcGIS多面体(multipatch)解析——引
查看>>
css3渐变画斜线 demo
查看>>
JS性能DOM优化
查看>>
HAL层三类函数及其作用
查看>>
Odoo 去掉 恼人的 "上午"和"下午"
查看>>
web@h,c小总结
查看>>
java编程思想笔记(一)——面向对象导论
查看>>
Data Structure 基本概念
查看>>
Ubuntu改坏sudoers后无法使用sudo的解决办法
查看>>
NEYC 2017 游记
查看>>
[搬运] 写给 C# 开发人员的函数式编程
查看>>
Python之旅Day14 JQuery部分
查看>>