代码搜索:expression
找到约 10,000 项符合「expression」的源代码
代码结果 10,000
www.eeworm.com/read/168845/5432418
hpp operation_sparse.hpp
//
// Copyright (c) 2000-2002
// Joerg Walter, Mathias Koch
//
// Permission to use, copy, modify, distribute and sell this software
// and its documentation for any purpose is hereby granted
www.eeworm.com/read/269320/11101196
txt yabbison.txt
%{
/*
YABASIC --- a tiny integrated Basic Compiler/Interpreter
BISON - part
this Program is subject to the GNU General Public License;
see the file yabasic.c for deta
www.eeworm.com/read/148019/12499661
txt yabbison.txt
%{
/*
YABASIC --- a tiny integrated Basic Compiler/Interpreter
BISON - part
this Program is subject to the GNU General Public License;
see the file yabasic.c for deta
www.eeworm.com/read/113072/15471042
txt 415.txt
+ 运算符
Microsoft® Visual Basic® Scripting Edition
+ 运算符
语言参考
版本 1
请参阅
描述
用于计算两个数之和。
语法
result = expression1 + expression2
+ 运算符的语法有以下部分:
部分
描述
result
任意数值变量。
express
www.eeworm.com/read/184320/9110493
cs transitioner.cs
using System;
using System.Xml;
namespace GameAI
{
///
/// Summary description for Transitioner.
///
public class Transitioner
{
#region Attributes
private Ex
www.eeworm.com/read/437118/7754897
cup java15.cup
package Parse;
import java_cup.runtime.*;
/* Java 1.5 parser for CUP.
* (actually "Java 1.4 with JSR-14" parser,
* since Java 1.5 has not yet been finalized)
* Copyright (C) 2002 C. Scott Anania
www.eeworm.com/read/201481/15407236
cs transitioner.cs
using System;
using System.Xml;
namespace GameAI
{
///
/// Summary description for Transitioner.
///
public class Transitioner
{
#region Attributes
private Ex
www.eeworm.com/read/127767/14335822
txt e445. reading lines from a string using a regular expression.txt
This example demonstrates how to read lines from a CharSequence. The lines can be terminated with any of the legal line termination character sequences: \r, \r\n, or \n.
CharSequence inputStr =
www.eeworm.com/read/127767/14335912
txt e430. searching and replacing with nonconstant values using a regular expression.txt
The simplest way to replace all occurrences of a pattern in a CharSequence is to use Matcher.replaceAll(). However, this method is restricted to replacement values that are constant. If the replacemen
www.eeworm.com/read/127767/14336376
txt e441. using a regular expression to filter lines from a reader.txt
A common use of regular expressions is to find all lines that match a pattern, similar to the grep Unix command. This example reads lines using a BufferedReader and tests each line for a match.