代码搜索:pattern
找到约 10,000 项符合「pattern」的源代码
代码结果 10,000
www.eeworm.com/read/263209/11371133
java test2.java
import java.util.regex.*;
public class Test2 {
public static void main(String[] args) {
String thePattern = "(?i)ill\\d";
Pattern pattern = Pattern.compile(thePattern);
String target = "Ja
www.eeworm.com/read/263209/11371154
java~ test2.java~
import java.util.regex.*;
public class Test2 {
public static void main(String[] args) {
String thePattern = "\\will\\d";
Pattern pattern = Pattern.compile(thePattern);
String target = "Jac
www.eeworm.com/read/407047/11430820
m antread.m
%ANTREAD [GAIN PATTERN] = ANTREAD(ANT_FILENAME) reads the antenna data file
% [GAIN PATTERN] = ANTREAD() reads the omni antenna data file as default
% HUOM !!! Special format re
www.eeworm.com/read/400478/11575995
java matcheslooking.java
import java.util.regex.Pattern;
import java.util.regex.Matcher;
public class MatchesLooking {
private static final String REGEX = "foo";
private static final String INPUT = "fooooooooo
www.eeworm.com/read/158653/11594321
h cluster.h
// Cluster.h: interface for the CCluster class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CLUSTER_H__E921280B_4D09_4970_813F_8831EAEDF1F4__INCLUDE
www.eeworm.com/read/347848/11632890
java decimalformatdemo.java
import java.text.DecimalFormat;
public class DecimalFormatDemo
{
public static void main(String[] args)
{
DecimalFormat pattern00dot000 = new DecimalFormat("00.000");
www.eeworm.com/read/261178/11661652
h cluster.h
// Cluster.h: interface for the CCluster class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CLUSTER_H__E921280B_4D09_4970_813F_8831EAEDF1F4__INCLUDE
www.eeworm.com/read/157530/11696259
h cluster.h
// Cluster.h: interface for the CCluster class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_CLUSTER_H__E921280B_4D09_4970_813F_8831EAEDF1F4__INCLUDE
www.eeworm.com/read/342069/12043919
java search.java
import java.sql.*;
import java.io.*;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Search{
public static void search()
{
try{
Con