[转]Date and String Function in BluePrism
本文转自:https://www.codeproject.com/Articles/1247389/Date-and-String-Function-in-BluePrism
This article appears in the Third Party Products and Tools section. Articles in this section are for the members only and must not be used to promote or advertise products in any way, shape or form. Please report any spam or advertising.
Introduction
Date and String funtion are commonly used to take decision and do some calculations in BluePrism.
Expressions can be created in a variety of ways. They can be typed directly into the Expression Editor, or can be built up by dragging and dropping items from either the Function List, or the Data Item List. The Function List shows all the functions available in Blue Prism. When a Function is dragged and dropped into the Expression Editor, the default function text is automatically entered on the screen. Similarly, Data Items can be dragged in from the Data Item List and their names will be automatically entered into the Expression Editor.
Functions can also be composed in the Function Builder area in the centre of the screen. When a Function is selected from the Function List it is displayed in the Function Builder, along with a description of its use and any of its parameters. Parameters can be given values either by typing directly into the fields shown, or by dragging Data Items from the Data Item List. Once the Function has been built, it can be transferred to the Expression Editor using the Paste button.
A Calculation must specify the Data Item into which the evaluated result will be stored. The 'Store Result In' field can be populated by typing in a Data Item name, or by dragging in a Data Item from the list on the right.
When an expression is complete, it should be checked for errors and this can be done by selecting the 'Process Validation' button. Blue Prism will then check the expression and highlight the likely location of the error.
Using the code
Functions are in the formFunctionName(parameter1,parameter2), for example Mid("Hello", 1, 2).
The syntax for most functions is self-explanatory. Below are details of the more complex functions.
DateDiff (interval,date1,date2)
The recommended way to find the difference between two Dates, Times, or DateTimes is to subtract them
For example, MakeDate(26,5,1999) - MakeDate(29,5,1968) will return a TimeSpan 11319.00:00:00
When you need to find the difference in a non-fixed interval of time that can vary depending on the time of year, the DateDiff function provides some useful intervals. These are listed in the table within the function below. If date2 > date1 the returned number will be positive. If Week of year is used, the return value represents the number of weeks between the first day of the week containing date1 and the first day of the week containing date2.
Parameters
The three parameters are as follows:
- Interval
- A code specifying the desired units of the return value. These values are detailed in the function.
- date1
- The first of the two dates for comparison.
- date2
- The second of the two dates for comparison.
Examples
- To calculate the number of weeks between 29/5/1968 and 26/5/1999 use DateDiff(1,MakeDate(29,5,1968), MakeDate(26,5,1999)). This will correctly return 1617.
(interval, number,date)
The recommended way to add an interval to a Date, Time, or DateTime is to add a TimeSpan
For example, MakeDate(26,5,1999) + MakeTimeSpan(3, 0, 0, 0) would result in 29/05/1999.
For times, MakeTime(12,30,0) + MakeTimeSpan(0, 1, 5, 3) would result in 13:35:03.
When you need to add a non-fixed interval of time that can vary depending on the time of year the function provides some useful intervals. Each type of interval is represented by the numbers listed below:
As indicated some intervals are not applicable to the function but were chosen so the same set of numbers could be used for the function and the DateDiff function
For example, to add a number of months to a date use interval number 5. So to add 2 months to 26/5/1999, use (5, 2, MakeDate(26,5,1999)). This would correctly return 26/7/1999.
Intervals are subtracted in a similar manner by using a negative value for the quantity of intervals, ied(5, -2, MakeDate(26,5,1999)) results in 26/3/1999.
The function won't return an invalid date. For example if you added 1 month to January 31st 2005 using (5,1,MakeDate(31,1,2005)) the function would return 28/2/2005 (rather than returning 31/02/2005 - a date which does not exist).
FormatDate (Date, DateFormat);
This function is used to format a date into a desired form, or to extract a smaller piece of information (such as the day of the week) from a full date.
Parameters
The two parameters are as follows:
- Date
- The date value to be formatted as a text value
- Format
- The format string, which specifies the form of the desired output. Possible values are outline below.
Examples
- FormatDate("19 Jul 2005", "yyyy-MM-dd") will return "2005-07-19"
- FormatDate("19-07-2005","MMM dd, yyyy") returns "Jul 19, 2005"
- FormatDate("19 Jul 2005", "dddd") will return "Tuesday"
Format String Details
The following date codes are supported. By combining values, you may form a suitable Format string, to be passed as the second parameter.
MakeDate (Day, Month, Year);
MakeDate() is used to create a date from numbers.
Parameters
The three parameters are as follows:
- Day
- The day of the month to be used. This must be valid with respect to the chosen month; 30 is not a valid value if the month is 2 (ie February)
- Month
- The 1-based index of the month desired (eg 4 corresponds to April). Must not exceed 12.
- Year
- The year desired, eg 2001.
Two-digit Years
For compatibility with old processes, where it was allowed, the MakeDate function will accept two-digit years and interpret them using the 2029 rule. However, it is strongly recommended that this functionality is never used. Always give a full year, including the century. In the case where the year is retrieved from another system in two digits, find out what convention that system is using and apply it as soon as you read the data.
Examples
Tips
The MakeDate function is the preferred way to form a new date, rather than using a string such as "02/03/2007", which has an ambiguous value depending on the current locale (ie an American would probably interpret this date differently to a Briton).
- MakeDate(21,6,2005) will return the date 21st June 2005
- MakeDate(21,6,1995) will return the date 21st June 1995
- MakeDate(5,12,29) will return the date 5th December 2029
- MakeDate(5,12,30) will return the date 5th December 1930
Mid (string, startpoint, maxcharacters);
Mid() is used to reduce a longer string (ie sequence of letters) into a shorter string contained in that string (ie a substring). For example, Mid() can be used to reduce the string "Customer Name: John Smith", to the substring "John Smith".
Parameters
The three parameters are as follows:
- string
- The larger string, from which a substring is to be extracted.
- startpoint
- The 1-based index of the first letter desired.
- maxcharacters
- The maximum number of characters desired. The return value of the function will have this number of characters, unless the larger string ends first, in which case this value will become a theoretical maximum.
Tips
When the user-specified maximum length exceeds the length of the string supplied, Blue Prism will reduce this length to the length of the supplied string. Thus, to save counting too many letters, it is often convenient to write a large number in the last argument: Mid("Customer Name: John Smith", 16, 100). The string "John" could be obtained using Mid("Customer Name: John Smith",16,4). Note: The arguments are rounded off to whole integers, so Mid("abcdefg", 1.2, 1.8) would evaluate to "ab".
Examples
- Mid("Customer Name: John Smith", 16, 25) - returns "John Smith"
Left (string, maxcharacters);
Left() is used to return the first few letters of a longer string of letters.
Parameters
The two parameters are as follows:
- string
- The larger string, from which a substring is to be extracted.
- maxcharacters
- The maximum number of characters desired. The return value of the function will have this number of characters, unless the larger string ends first, in which case this value will become a theoretical maximum.
Tips
If the value maxcharacters exceeds (or indeed is equal to) the number of characters in the string, the function will simply return the string unmodified. The value supplied to maxcharacters may be zero if desired (returns empty string), but may not a negative number.
Examples
- Left("Blue Prism empowers business users to achieve more in less time", 10) returns "Blue Prism"
Right (string, maxcharacters);
Right() behaves exactly as Left(), but returns the ending string (with the specified length) rather than the starting string.
Len (string);
Len() returns the number of characters in a string. For example Len("Blue Prism") returns the number 10.
Instr (string, substring);
Instr() tests whether the smaller string substring is contained in the longer string string. If it is, then Instr() returns the number of characters from the left that the first occurrence of substring may be found.
Parameters
The two parameters are as follows:
- string
- The larger string, from which a substring is to be extracted.
- substring
- The smaller string, whose presence is to be detected in the larger string.
Examples
Tips
If substring is not found in string then Instr() will return zero. Thus Instr() is a useful way of testing for the presence of a smaller string in a larger string: eg. Instr("Apples", "Bananas") > 0 will return FALSE.
- Instr("Calculations are much faster with Blue Prism than with an abacus", "are") will return 14 because the word "are" first occurs at the fourteenth character.
AddDays (date, numDays);
This function will add a certain number of days to a chosen date.
Parameters
The two parameters are as follows:
- date
- The date to which onto which the days should be added.
- numDays
- The number of days to be added.
Examples
Tips
As with the function(), only valid dates will be returned. For example in a leap year adding one day to 28 February will result in 29 February whereas during any other year it will result in 1 March.
- AddDays("01/01/2006", 10) will return the date "11/01/2006".
AddMonths (date, numMonths);
This function will add a certain number of months to a chosen date.
Parameters
The two parameters are as follows:
- date
- The date to which onto which the months should be added.
- numMonths
- The number of months to be added.
Examples
Tips
As with the function(), only valid dates will be returned. For example adding 1 month to January 31st 2005 using AddMonths("31/01/2005",1) would return "28/2/2005" (rather than returning "31/02/2005" - a date which does not exist).
- AddMonths("01/01/2006", 10) will return the date "01/11/2006".
Now ();
This function will return the current date and time and date as a datetime data item.
Tips
If you merely want to know today's date, it would be better to use the Today() function instead.
Today ();
This function will return the current date as a date data item.
Tips
If you want to know the current time together with today's date, it might be better to use the Now() function instead.
DecPad (number, numplaces);
This function will represent a number in a text format. This is often useful when dealing with currency, when numbers such as the number 1 are more often represented as "1.00".
Parameters
The two parameters are as follows:
- number
- The number to be formatted as text.
- numPlaces
- The maximum number of decimal places desired.
Examples
Tips
If the natural representation has too many decimal places then the appropriate number of decimal places will be removed, whilst rounding the number to the appropriate precision.
- DecPad(1.296,2) will return the text "1.30".
- DecPad(1.1111,2) will return the text "1.11"
RndDn (number, numplaces);
This function will round a number downwards to the desired number of decimal places. The datatype of the value returned is number.
Parameters
The two parameters are as follows:
- number
- The number to be rounded.
- numPlaces
- The maximum number of decimal places desired.
Examples
Tips
If the number is already within the desired level of precision then it will remain unchanged, and in particular it will not be reformatted (as it would using the function DecPad). See also the functions Round and RndUp.
- RndDn(9.19996,3) will return the number 9.199
- RndDn(9.1345,2) will return the number 9.13
- RndDn(3.14159,10) would return 3.14159 (the number is unchanged)
RndUp (number, numplaces);
This function will round a number upwards to the desired number of decimal places; it behaves analogously to the RndDn() function.
Parameters
The two parameters are as follows:
- number
- The number to be rounded.
- numPlaces
- The maximum number of decimal places desired.
Examples
Tips
If the number is already within the desired level of precision then it will remain unchanged, and in particular it will not be reformatted (as it would using the function DecPad). See also the functions Round and RndDn.
- RndDn(9.19996,3) will return the number 9.200
- RndDn(9.1345,2) will return the number 9.14
- RndDn(3.14159,10) would return 3.14159 (the number is unchanged)
Round (number, numplaces);
This function will round a number to the nearest number having the desired number of decimal places.
Parameters
The two parameters are as follows:
- number
- The number to be rounded.
- numPlaces
- The maximum number of decimal places desired.
Examples
Tips
If the number is already within the desired level of precision then it will remain unchanged, and in particular it will not be reformatted (as it would using the function DecPad). See also the functions RndUp and RndDn.
- Round(9.1345,2) will return the number 9.13
- Round(9.19996,3) will return the number 9.200
- Round(3.14159,10) would return 3.14159 (the number is unchanged)
Sqrt (number);
This function will return the square root of the supplied number. The square root of a number is the unique positive number which when multiplied by itself results in the number you started with.
Examples
- Sqrt(100) returns the number 10
- Sqrt(2) returns 1.4142135623731
Log (number, base);
Evaluates the logarithm of the number to the specified base value. For a value v and a base b, the logarithm of v to the base b - written Log(v, b) - answers the question "what is the value x which satisfies bx = v?".
Examples
- Log(1000, 10) = 3 because 103 = 1000.
- Log(1/4, 2) = -2 because 2-2 = 1/4
Chr (keycode);
This function will return the character represented by the supplied ASCII code.
Examples
Tips
For a full introduction to the ASCII code, please consult an external reference. A quick guide is given on the Blue Prism ASCII page.
- Chr(65) returns the text "A"
Upper (string);
This function will return the upper case representation of the supplied text. Any letters in the supplied text which are already in upper case will be unchanged, whilst those which are not in upper case will be changed.
Examples
Tips
See also the Lower() function.
- Upper("software") will return the text "SOFTWARE"
- Upper("aBcDeFg") will return the text "ABCDEFG"
Lower (string);
This function will return the lower case representation of the supplied text. Any letters in the supplied text which are already in lower case will be unchanged, whilst those which are not in lower case will be changed.
Examples
Tips
See also the Upper() function.
- Lower("SOFTWARE") will return the text "software"
- Lower("aBcDeFg") will return the text "abcdefg"
License
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
[转]Date and String Function in BluePrism的更多相关文章
- java中Date与String的相互转化
1:大体思路 这种转换要用到java.text.SimpleDateFormat类 字符串转换成日期类型: 方法1: 也是最简单的方法 Date date=new Date("2008-04 ...
- Java Date,long,String 日期转换
1.java.util.Date类型转换成long类型java.util.Date dt = new Date();System.out.println(dt.toString()); //java. ...
- Date、String、Calendar、Timestamp类型之间的转化
1.Calendar 转化 String Calendar calendat = Calendar.getInstance(); SimpleDateFormat sdf = new SimpleDa ...
- Date、String、Calendar类型之间的转化
原文出处:http://fjfj910.iteye.com/blog/1202219 1.Calendar 转化 String //获取当前时间的具体情况,如年,月,日,week,date,分,秒等 ...
- java Date和String转换总结
java.util.Date和String类型的转换是非常常用的,现在总结一下: 1. Date转换为String //Date --->String DateFormat dft = new ...
- 一个处理Date与String的工具类
public class DateUtil { private DateUtil(){ } public static final String hhmmFormat="HH:mm" ...
- Date和String类型的相互转换
String转Date: SimpleDateFormat bartDateFormat = new SimpleDateFormat("MM-dd-yyyy"); String ...
- iOS中date和string的相互转换
必须知道的内容 G: 公元时代,例如AD公元 yy: 年的后2位 yyyy: 完整年 MM: 月,显示为1-12 MMM: 月,显示为英文月份简写,如 Jan ...
- 【java】Date与String之间的转换及Calendar类:java.text.SimpleDateFormat、public Date parse(String source) throws ParseException和public final String format(Date date)
package 日期日历类; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util. ...
随机推荐
- 【爆料】-《悉尼大学毕业证书》USYD一模一样原件
☞悉尼大学毕业证书[微/Q:2544033233◆WeChat:CC6669834]UC毕业证书/联系人Alice[查看点击百度快照查看][留信网学历认证&博士&硕士&海归&a ...
- Go中原始套接字的深度实践
1. 介绍 2. 传输层socket 2.1 ICMP 2.2 TCP 2.3 传输层协议 3. 网络层socket 3.1 使用Go库 3.2 系统调用 3.3 网络层协议 4. 总结 4.1 参考 ...
- sql server 任务调度与CPU
一. 概述 我们知道在操作系统看来, sql server产品与其它应用程序一样,没有特别对待.但内存,硬盘,cpu又是数据库系统最重要的核心资源,所以在sql server 2005及以后出现了SQ ...
- 深入理解java虚拟机之java内存区域
java虚拟机在执行java程序的时候会把它所管理的内存分为多个不同的区域,每个区域都有不同的作用,以及由各自的生命周期,有些随着虚拟机进行的启动而存在,有些区域则依赖于用户线程的启动或结束而建立或销 ...
- LeetCode算法题-Number of Lines To Write String(Java实现)
这是悦乐书的第319次更新,第340篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第188题(顺位题号是806).我们要将给定字符串S的字母从左到右写成行.每行最大宽度为 ...
- netty 之 telnet HelloWorld 详解
前言 Netty是 一个异步事件驱动的网络应用程序框架, 用于快速开发可维护的高性能协议服务器和客户端. etty是一个NIO客户端服务器框架,可以快速轻松地开发协议服务器和客户端等网络应用程序.它极 ...
- 卷积神经网络之LeNet
开局一张图,内容全靠编. 上图引用自 [卷积神经网络-进化史]从LeNet到AlexNet. 目前常用的卷积神经网络 深度学习现在是百花齐放,各种网络结构层出不穷,计划梳理下各个常用的卷积神经网络结构 ...
- 欢迎使用IdentityModel文档!- IdentityModel 中文文档(v1.0.0)
IdentityModel是基于声明的身份,OAuth 2.0和OpenID Connect的.NET标准帮助程序库. 它具有以下高级功能: 标准OAuth 2.0和OpenID Connect端点的 ...
- Oracle 经典面试题
第一题 create table test( id ) primary key, type ) , t_id ), value ) ); ,,,'张三'); ,,,'男'); ,,,'); ,,,'刘 ...
- 上帝的归上帝,凯撒的归凯撒—— CODING 权限管理更新
上帝的归上帝,凯撒的归凯撒 <马太福音>22 章 15-22 节,耶稣用这句话,说明了神权与政权之间的正确关系,奠定了神权与政权的基础,也划清了二者的界限.其实这两个问题如今也依旧出现在公 ...