码迷,mamicode.com
首页 >  
搜索关键字:telephony phone    ( 3619个结果
隐藏手机号
/** * 隐藏手机号码 * @param phone 手机号码 * @param startIndex 从第几个数字开始隐藏 * @param endIndex 隐藏至第几个数字 */ function hiddenPhone(phone, startIndex = 4, endIndex = 7 ...
分类:移动开发   时间:2020-02-09 16:44:15    阅读次数:82
MySQL增删改
1.插入语句 + 语法: + + + 注意事项: + 表中设有非空约束的字段必须赋值 + 列名个数与顺序需要与值对应 + 第一种方式可以同时插入多条值,第二种不可以 + 省略列名时,默认所有字段都赋值 + 示例 + + + + 2.删除语句 + 语法: + 示例 + + boyfriend_id i ...
分类:数据库   时间:2020-02-07 22:26:43    阅读次数:98
spring(2)--获取对象方式介绍
1.项目目录 2.Javabean(省略常见方法) public class Person { private int id; private String name; private int age; private String phone; 3.新建Spring的配置文件:applicatio ...
分类:编程语言   时间:2020-02-07 20:44:05    阅读次数:62
leetcode17 Letter Combinations of a Phone Number
1 """ 2 Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. 3 A mapping of d ...
分类:其他好文   时间:2020-02-06 16:44:30    阅读次数:70
PHP 数组转字符串,与字符串转数组
1 implode 使用一个字符串将数组变成字符串 1 2 3 4 5 6 7 8 9 10 11 <br><?php $array = array('lastname', 'email', 'phone'); $comma_separated = implode(",", $array); ech ...
分类:编程语言   时间:2020-02-02 19:47:43    阅读次数:55
Trie入门--Poj3630 Phone List
就Trie的插入和查找 //注意此题是找到前缀输出no,否则输出yes #include<bits/stdc++.h> using namespace std; int n,t,flag,cnt,trie[110001][21]; int ed[110001],vis[110001]; char c ...
分类:其他好文   时间:2020-02-02 17:59:17    阅读次数:73
TextView标签的属性和跑马灯效果
text:显示的内容 textSize:文本的大小 textColor:文本的颜色 visibility:可见性 默认可见,invisible:表示不可见,但对控件的显示区域做了保留 gone:隐藏控件当前控件显示的区域不做保留 autoLink:表示当前TextView的链接类型,值为“phone ...
分类:其他好文   时间:2020-02-02 13:51:48    阅读次数:71
05_CheckList
Checklist 复选框列表,依赖 cell 组件。 引入 import { Checklist } from 'mint-ui'; Vue.component(Checklist.name, Checklist); 例子 基本用法 <mt-checklist title="复选框列表" v-mo ...
分类:其他好文   时间:2020-02-01 15:57:11    阅读次数:80
【算法学习记录-排序题】【PAT A1016】Phone Bills
A long-distance telephone company charges its customers by the following rules: Making a long-distance call costs a certain amount per minute, dependi ...
分类:编程语言   时间:2020-01-31 17:22:48    阅读次数:139
前台自定义函数post请求接口
前台 vue-resource请求接口 addCustomer(e){ if (!this.customer.name || !this.customer.phone || !this.customer.email) { // console.log('请添加对应信息'); this.alert = ...
分类:其他好文   时间:2020-01-30 19:13:58    阅读次数:156
3619条   上一页 1 ... 20 21 22 23 24 ... 362 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!