正则截取字符串中(与(前的字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正则截取字符串中(与(前的字符串相关的知识,希望对你有一定的参考价值。
运用正则表达式截取
或者用别的方法也行
试了下,可是连(都取出来了,而且对全角(不起作用
import java.util.Scanner;
public class Test13
public static void main(String[] args)
int j;
char b[] = new char[100];
Scanner sc = new Scanner(System.in);
String a = sc.next();
char a1[] = a.toCharArray();
for (int i = 0; i < a1.length; i++)
b[i] = a1[i];
if (a1[i] == '(')
break;
String c = new String(b);
System.out.println(c);
参考技术A 正则:(.*)\(|(
取出结果 $1 即可~ 参考技术B ^[\d\D]*?(?=\(|()
sql server截取某个特定字符前的字符串
参考技术A left(列名,charindex(特定字符,列名)-1)left:返回从左边开始指定字符串
charindex:找到特定并返回字符所在位置
select left(case_name,charindex('_',case_name)-1) from table1 where charindex('_',case_name)-1 > 0
注意:不加where后面的条件会报 “传递给 LEFT 或 SUBSTRING 函数的长度参数无效”的错误。
以上是关于正则截取字符串中(与(前的字符串的主要内容,如果未能解决你的问题,请参考以下文章